作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个程序,它生成一个随机的 10 个数字数组,使用冒泡排序对数组进行排序,然后使用二分搜索来查看该值是否在数组中。我的所有代码对我来说看起来都是正确的,但每次我运行程序时,如果我选择搜索的数字实际上在数组中,它仍然告诉我它不是。我相信这与我的返回值有关,但代码对我来说看起来是正确的。
import java.util.Scanner;
public class BubbleSort {
public static void main(String[] args) {
final int SIZE=10;
int[] numbers= new int[SIZE];
int number;
int result;
Scanner keyboard = new Scanner(System.in);
loadArray(numbers);
sortArray(numbers);
displayArray(numbers);
System.out.print("Enter your number: ");
number=keyboard.nextInt();
result=binarySearch(numbers, number);
if(result==-1){
System.out.print("Your number was not found");
}else{
System.out.print("Your number was found");
}
}
public static void loadArray(int[] numbers){
int index;
for(index=0;index<numbers.length;index++){
numbers[index]=(int)(Math.random()*100)+1;
}
}
public static void sortArray(int[] num){
int index;
int passNo;
int holdingnumber;
//boolean condition=true;
//while(condition){
//condition=false;
for(passNo=0;passNo<num.length-1;passNo++){
for(index=0;index<num.length-1;index++){
if(num[index]>num[index+1]){
holdingnumber=num[index+1];
num[index+1]=num[index];
num[index]=holdingnumber;
//condition=true;
}
}
}
}
public static void displayArray(int[] numbers){
int index;
for(index=0;index<numbers.length;index++){
System.out.println("Element["+index+"]: " +numbers[index]);
}
}
public static int binarySearch(int[] array, int number){
int low=0;
int mid=0;
int high=0;
while(low<=high){
mid=(low+high)/2;
if(array[mid]>number){
high=mid-1;
}else if(array[mid]<number){
low=mid+1;
}else{
return mid;
}
}
return -1;
}
}
最佳答案
我认为 high
变量不等于 0 ,它需要是数组的长度,如下所示:
int high = array.length-1;
关于java - 二分查找的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16244622/
我正在尝试编写一个程序,在名为 items 的数组中进行顺序搜索和二分搜索,该数组具有 10000 个已排序的随机 int 值。第二个名为 targets 的数组加载了 1000 个 int 值(50
当我尝试使用图表并为其编写一些代码但没有成功时,我遇到了一个问题:/!! 我想创建一些东西来获取图形数据并检查它是否:1- 连接2-二分法3-有循环4-是一棵树 所以我想知道,例如,是否可以将其写入以
我是一名优秀的程序员,十分优秀!