Java二进制搜索无法正常工作

时间:2013-04-19 21:53:58

标签: java search binary insertion-sort

我在main中有一个插入搜索,从那里我调用BinarySearch方法来搜索已经排序的数组中的数字。我尝试编译它我得到的错误是我的主要插入排序。

public class test5
{
 public static void main(String[] args)
 {

// original order or numbers
System.out.println("Original order of numbers:");
int nums[] = {26, 45, 56, 12, 78, 74, 39, 22, 5, 90, 87, 32, 28, 11, 93, 62, 79, 53, 22, 51};

for(int x = 0; x < nums.length; x++){
System.out.print(nums[x] + " ");
}


// local variables
int unsortedValue; // The first unsorted value
int scan; // used to scan the array
int swapCount = 0;


// the other loop steps the index variable through 
// each subscript in the array, starting at 1. This
// is because element 0 is considered already sorted.
for(int index = 1; index < nums.length; index++)
{
    // The first element outside the sorted subset is
    // nums[index]. Store the value of this elementt
    // in unsortedValue.
    unsortedValue = nums[index];

    // Start the scan at the subscript of the first element
    // into its proper position within the sorted subset.
    scan = index;

    // Move the first element outside the sorted subset
    // into its proper position within the sorted subset.
    while(scan > 0 && nums[scan-1] > unsortedValue)
    {
        nums[scan] = nums[scan -1];
        scan--;

    }

    // Insert the unsorted value in its proper position
    // within the sorted subset.
    nums[scan] = unsortedValue;
    swapCount++;
        }

    //  print out results of swap and swapCount
    System.out.println();
    System.out.println("Insertion sort: ");

    for(int index = 0; index < nums.length; index++){   
            System.out.print(nums[index] + " ");
                        }

    System.out.println();
    System.out.println("The swap count is: " + swapCount);
    BinarySearch(nums);
    }

这是二元搜索的方法

public static int BinarySerach(String[] array, String value)
{
Scanner keyboard = new Scanner(System.in);

System.out.print("Enter target: ");
int target = nums.nextInt();
int index = -1;
int left = 0;
int right = nums.length - 1; 
int middle;
while(left <= right){
    middle = (left + right)/2;
    if(nums[middle] == target){
        index = middle;
        break;
    } else if (nums[middle] > target) {
        right = middle - 1;
    }else{
        left = middle + 1;
    }
}
if(index == -1){
    System.out.println("element not found");
}else{
    System.out.println("element found at index " + index);
    }
}

}

我得到的错误是找不到符号。

2 个答案:

答案 0 :(得分:0)

您已在nums方法中在本地声明了main数组,因此在其他地方无法访问,例如你的BinarySearch方法。范围仅在main方法中。

在所有方法之外声明它static,以便可以从任何方法访问它:

public class test5
{
    static int nums[] = {26, 45, 56, 12, 78, 74, 39, 22, 5, 90, 87, 32, 28, 11, 93, 62, 79, 53, 22, 51};

    public static void main(String[] args)
    {
    ...

此外,

  • 您无法在nextInt(nums)上致电int[]。它看起来像你 意思是在Scanner对象上调用它:int target = keyboard.nextInt();
  • 您没有使用BinarySearch的任何参数 - 删除它们。同时删除您在nums
  • 的通话中传递BinarySearch
  • 这可能是一个错字,但你在BinarySerach而不是BinarySearch声明了你的方法。
  • 您没有从BinarySearch方法返回任何内容,但您没有将该方法的返回分配给任何内容;只需返回类型void

答案 1 :(得分:-1)

import java.io.*;
class BinarySearch{
public static void main(String args[])throws IOException{
InputStreamReader isr=new InputStreamReader(System.in);
BufferedReader br=new BufferedReader (isr);
int a[]={7, 10, 12, 34, 45,51, 60, 78, 81, 92};
int key, low=0, high=a.length-1, mid=0;
System.out.print("Enter the integer to search:");        key=Integer.parseInt(br.readLine());
while(low<=high){
mid=(low+high)/2;
if (key==a[mid])
break;
else if(key<a[mid])
high=mid-1;
else
low=mid+1;
}
if(low<=high)
System.out.println(key+" found at index "+mid);
else
System.out.println(key+" not found");
}
}``