Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

How to perform binary search on sort Array in Java

2 Answers

0 votes
package javaapplication1;

import java.util.Arrays;

public class JavaApplication1 {

    public static void main(String[] args) {

        short shortArr[] = {6, 4, 2, 3, 1, 2, 7, 5, 8};
   
        Arrays.sort(shortArr);

        short sn = 5;
        int r = Arrays.binarySearch(shortArr, sn);
        System.out.println("return index : " + r);
    }
}
 
/*

run:

return index : 5

*/

 



answered Oct 5, 2016 by avibootz
0 votes
package javaapplication1;

import java.util.Arrays;

public class JavaApplication1 {

    public static void main(String[] args) {

        short shortArr[] = {6, 4, 2, 3, 1, 2, 7, 5, 8};
   
        Arrays.sort(shortArr);

        short sn = 9;
        int r = Arrays.binarySearch(shortArr, sn);
        System.out.println("return index : " + r);
        
        r = Arrays.binarySearch(shortArr, (short)11);
        System.out.println("return index : " + r);
        
        sn = -12;
        r = Arrays.binarySearch(shortArr, sn);
        System.out.println("return index : " + r);        
        
        sn = -2;
        r = Arrays.binarySearch(shortArr, sn);
        System.out.println("return index : " + r);        
    }
}
 
/*

run:

return index : -10
return index : -10
return index : -1
return index : -1

*/

 



answered Oct 5, 2016 by avibootz

Related questions

2 answers 208 views
3 answers 220 views
2 answers 201 views
2 answers 158 views
2 answers 187 views
3 answers 189 views
1 answer 174 views
...