Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code to binary search.

public class BinarySearch {

private static int location;
private static int a = 14;
static int[] numbers = new int[]{3, 6, 7, 11, 14, 16, 20, 45, 68, 79};

public static int B_Search(int[] sortedArray, int key) {
    int lowB = 0;
    int upB = sortedArray.length;
    int mid;
    while (lowB < upB) {
        mid = (lowB + upB) / 2;

        if (key < sortedArray[mid]) {
            upB = mid - 1;
        } else if (key > sortedArray[mid]) {
            lowB = mid + 1;
        } else {
            return mid;
        }
    }
    return -1;
}

public static void main(String[] args) {
    BinarySearch bs = new BinarySearch();
   location= bs.B_Search(numbers, a);
   if(location != -1){
       System.out.println("Find , at index of: "+ location);
   }
   else{
       System.out.println("Not found!");
   }
}
}

output:

a=14 not Found!!

Why?

share|improve this question
1  
Your sorted array is not sorted. – Anony-Mousse Mar 1 at 20:39

2 Answers

up vote 9 down vote accepted

output: a=68 not Found!! Why?

The binary search algorithm relies on the input being sorted to start with. It assumes that if it finds a value which is greater than the target one, that means it needs to look earlier in the input (and vice versa).

Your array isn't sorted:

static int[] numbers = new int[]{6, 3, 7, 19, 25, 8, 14, 68, 20, 48, 79};

Sort it to start with, and it should be fine.

share|improve this answer
How can i sort fast? – Sajjad - Mar 1 at 20:38
1  
You can only sort in O(n log n) with comparisons. – Andrew Mao Mar 1 at 20:38
Sajjad - Unless this is an exercise in learning data structures and algorithms, why not leverage the libary? See Collections.sort and Collections.binarySearch – Ron Dahlgren Mar 1 at 20:39
@Sajjad-: It's not clear what you goal is here. Are you trying to learn about binary search, or accomplish something in a real context? If it's the latter, you need to provide that context so we can help you appropriately. (And you don't need to implement Arrays.binarySearch yourself...) – Jon Skeet Mar 1 at 20:40
2  
As I said before: Arrays.sort. (And you should really learn to research things. Searching for "how do I sort an array in Java" gives plenty of good hits.) – Jon Skeet Mar 1 at 20:45
show 8 more comments

First, You should sort you array...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.