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 byte Array in Java

3 Answers

0 votes
package javaapplication1;

import java.util.Arrays;

public class JavaApplication1 {

    public static void main(String[] args) {

        byte bArr[] = {1, 2, 3, 4, 5, 6, 7}; 
   
        Arrays.sort(bArr);
   
        byte bVal = 3;
          
        int r = Arrays.binarySearch(bArr, bVal);
        System.out.println(r);
    }
}
 
/*
run:
 
2
 
*/

 



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

import java.util.Arrays;

public class JavaApplication1 {

    public static void main(String[] args) {

        byte bArr[] = {1, 7, 5, 2, 3, 6, 4}; 
   
        Arrays.sort(bArr);
   
        byte bVal = 5;
          
        int r = Arrays.binarySearch(bArr, bVal);
        System.out.println(r);
    }
}
 
/*
run:
 
4
 
*/

 



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

import java.util.Arrays;

public class JavaApplication1 {

    public static void main(String[] args) {

        byte bArr[] = {1, 7, 5, 2, 3, 6, 4}; 
   
        Arrays.sort(bArr);
   
        byte bVal = 100;
        int r = Arrays.binarySearch(bArr, bVal);
        System.out.println(r);
        
        bVal = 9;
        r = Arrays.binarySearch(bArr, bVal);
        System.out.println(r);
        
        bVal = 10;
        r = Arrays.binarySearch(bArr, bVal);
        System.out.println(r);
    }
}
 
/*
run:
 
-8
-8
-8
 
*/

 



answered Oct 3, 2016 by avibootz

Related questions

2 answers 176 views
2 answers 209 views
3 answers 221 views
2 answers 202 views
2 answers 159 views
2 answers 187 views
1 answer 175 views
...