我在 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);
}
}
}
我得到的错误是找不到符号。