Logo 
Search:

Java Articles

Submit Article
Home » Articles » Java » Data file structureRSS Feeds

Program of binary search tree

Posted By: Easy Tutor     Category: Java     Views: 13729

Write a program of binary search tree.

Code for Program of binary search tree in Java

import java.io.*;

class search
{
      String str;
      int key,size,seaArr[],bottom,top,middle;
      
      publicvoid getdata()
      {
             System.out.print("Enter how many data you want to enter : ");
             System.out.flush();
             try{
                 BufferedReader obj=new BufferedReader(new 

InputStreamReader(System.in));
                 str=obj.readLine();
                 size=Integer.parseInt(str);
                 seaArr=newint[size];
                 System.out.println("\nEnter Data in Sequential 

Order");
                 for(int i=0;i<size;i++)
                   {
                       System.out.print("Enter element at "+(i+1)+"th 

position  :  ");
                       System.out.flush();
                       str=obj.readLine();
                       seaArr[i]=Integer.parseInt(str);
                   }
                }
            catch(Exception e)  {}
      }
                 
      publicint BinSrch()
      {
            System.out.println("=====BINARY SEARCH=====\n");
            getdata();
            System.out.print("\nEnter Search Key : ");
            System.out.flush();
            try{
              BufferedReader obj=new BufferedReader(new InputStreamReader

(System.in));
              str=obj.readLine();
              key=Integer.parseInt(str);
              bottom=0;
              top=size-1;
                while(top>=bottom)
                    {
                         middle=(top+bottom)/2;
                        if(seaArr[middle]==key)
                           {
                                return(middle+1);
                           }
                        else
                          {
                                  if(seaArr[middle]>key)
                                        top=middle-1;
                                  else
                                        

bottom=middle+1;
                          }
                    }                        

          
                 }
             catch(Exception e) {}
             return(0);
        }    
}

class  BinSea
{
    publicstaticvoid main(String args[]) 
    {
           search o1 = new search();
           int result;
           result=o1.BinSrch();
           if(result==0)
                 System.out.println("\nSearch Not Found");
            else
                 System.out.println("\nSearch is Located at "+result+" 

Position");
    }
}
  
Share: 


Didn't find what you were looking for? Find more on Program of binary search tree Or get search suggestion and latest updates.

Easy Tutor
Easy Tutor author of Program of binary search tree is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
Davi Cr from United States Comment on: Mar 17
Hi
when i run the code above i get:

Exception in thread "main" java.lang.NoSuchMethodError: search.BinSrch()I
at BinSea.main(BinSea.java:67)



can you help? Thank you


View All Comments