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

2 Answers

0 votes
package javaapplication1;

import java.util.Arrays;

public class JavaApplication1 {

    public static void main(String[] args) {

        float floatArr[] = {3.01f, 3.14f, 2.58f, 1.23f, 5.10f, 6.19f, 4.12f};

        Arrays.sort(floatArr);

        float f = 3.14f;

        int r = Arrays.binarySearch(floatArr, f);
        System.out.println(r);
    }
}
 
/*
run:
 
3
 
*/

 



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

import java.util.Arrays;

public class JavaApplication1 {

    public static void main(String[] args) {

        float floatArr[] = {3.01f, 3.14f, 2.58f, 1.23f, 5.10f, 6.19f, 4.12f};

        Arrays.sort(floatArr);

        float f = 3.13f;
        int r = Arrays.binarySearch(floatArr, f);
        System.out.println(r);
        
        f = 5.06f;
        r = Arrays.binarySearch(floatArr, f);
        System.out.println(r);
        
        f = 6.20f;
        r = Arrays.binarySearch(floatArr, f);
        System.out.println(r);
        
        f = 18.25f;
        r = Arrays.binarySearch(floatArr, f);
        System.out.println(r);
    }
}
 
/*
run:
 
-4
-6
-8
-8
 
*/

 



answered Oct 4, 2016 by avibootz

Related questions

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