- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在开发一个程序,它会要求用户输入一个介于 3000-3100 之间的值,然后进行二进制搜索并显示它进行了多少次比较。总体而言,程序的搜索部分运行良好;但是,我的教授要我打印进行数学计算的程序。例如,我需要程序显示计算机进行二进制搜索数学运算,并显示程序查找输入数字所需的比较。
我有一个 comparisonCount
,当我进行比较时我会递增它,但结果不是我认为应该的结果。例如,我的教授说如果你输入 3067 应该有 7 次比较,但目前程序说 4,而计数器说 3。
你能帮我找到差异的原因吗?
代码如下:
package binary.search;
import java.util.Scanner;
public class BinarySearch
{
public static void binarySearch(int[] array, int lowerbound, int upperbound, int key)
{
int position;
int comparisonCount = 1; // counting the number of comparisons
// To start, find the subscript of the middle position.
position = (lowerbound + upperbound) / 2;
//System.out.println();
while ((array[position] != key) && (lowerbound <= upperbound))
{
comparisonCount++;
if (array[position] > key) // If the number is > key, ..
{
upperbound = position - 1; // decrease position by one.
}
else
{
lowerbound = position + 1; // Else, increase position by one.
}
position = (lowerbound + upperbound) / 2;
}
if (lowerbound <= upperbound)
{
System.out.println("The number " + key + " was found in array.");
System.out.println("The binary search found the number after " + comparisonCount + " comparisons.");
}
else
System.out.println("That number is not in this array. The binary search completed "
+ comparisonCount + " comparisons.");
}
public static void main(String[] args)
{
// Set up variables
int arrLength = 100;
Scanner inp = new Scanner(System.in);
int[] num = new int[arrLength]; //Create array
int repeat = 1; //Boolean for repeat loop
char yesNo;
int upperLim = 3100;
int lowerLim = 3000;
//Populate array
while (repeat == 1)
{
int value = 0;
int valid = 0;
for (int i = 0; i < num.length; i++)
{
num[i] = i + lowerLim;
}
//Get integer from user
do
{
System.out.print("Please enter a number between " + lowerLim + " and " + upperLim + ": ");
value = inp.nextInt();
if (value < lowerLim || value > upperLim)
{
System.out.print("That wasn't a valid number. Please try again. \n");
}
}
while (value < lowerLim || value > upperLim);
//Run binary search
binarySearch(num, 0, arrLength - 1, value);
do
{
valid = 0;
System.out.print("Would you like to rerun the program? Y for yes, N for no.\n");
yesNo = (inp.next()).charAt(0);
if (yesNo == 'Y')
{
repeat = 1;
valid = 1;
}
else if (yesNo == 'N')
{
repeat = 0;
valid = 1;
}
else
System.out.print("Not a valid response. \n");
}
while (valid != 1);
}
}
}
最佳答案
七次迭代是在一组一百个数字中找到一个数字所需的最大值。那是因为log<sub>2</sub>100
介于 6 和 7 之间,您需要使用这两个值中的较高值才能确定找到它。
但是,由于其工作方式,某些特定 值可能会更少。让我们更改您的代码,使其输出它在每个阶段所做的事情(只是添加了一些输出,标有 //<<here
到 //<<
的部分):
while ((array[position] != key) && (lowerbound <= upperbound)) {
System.out.print(String.format( //<<here
"Step %d, lo=%2d, hi=%2d, mid=%2d, [mid]=%4d, ",
comparisonCount, lowerbound, upperbound,
position, array[position])); //<<
comparisonCount++;
if (array[position] > key) {
upperbound = position - 1;
System.out.println(String.format( //<<here
"too high, hi:=%2d", upperbound)); //<<
} else {
lowerbound = position + 1;
System.out.println(String.format( //<<here
"too low, lo:=%2d", lowerbound)); //<<
}
position = (lowerbound + upperbound) / 2;
}
if (lowerbound <= upperbound) {
System.out.println(String.format( //<<here
"Step %d, lo=%2d, hi=%2d, mid=%2d, [mid]=%4d, found!",
comparisonCount, lowerbound, upperbound,
position, array[position])); //<<
System.out.println("The number " + key +
" was found in array.");
System.out.println("The binary search found the number after "
+ comparisonCount + " comparisons.");
}
例如,如果您正在搜索 3049
,您基本上会立即发现:
Step 1: lo= 0, hi=99, mid=49, [mid]=3049, found!
对于你的具体值3067
,它是这样的:
Step 1: lo= 0, hi=99, mid=49, [mid]=3049, too low, lo:=50
Step 2: lo=50, hi=99, mid=74, [mid]=3074, too high, hi:=73
Step 3: lo=50, hi=73, mid=61, [mid]=3061, too low, lo:=62
Step 4: lo=62, hi=73, mid=67, [mid]=3067, found!
如您所见,因此进行了四次迭代。如果你想看到完整的七次迭代,你可以搜索 3099
:
Step 1, lo= 0, hi=99, mid=49, [mid]=3049, too low, lo:=50
Step 2, lo=50, hi=99, mid=74, [mid]=3074, too low, lo:=75
Step 3, lo=75, hi=99, mid=87, [mid]=3087, too low, lo:=88
Step 4, lo=88, hi=99, mid=93, [mid]=3093, too low, lo:=94
Step 5, lo=94, hi=99, mid=96, [mid]=3096, too low, lo:=97
Step 6, lo=97, hi=99, mid=98, [mid]=3098, too low, lo:=99
Step 7, lo=99, hi=99, mid=99, [mid]=3099, found!
关于java - 如何打印计算机为二进制搜索所做的数学运算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31572651/
Based on Deep Learning (2017, MIT) book. 本文基于Deep Learning (2017, MIT),推导过程补全了所涉及的知识及书中推导过程中跳跃和省
因此,我需要一种方法来弄清楚如何获得5个数字,并且当您将它们中的任意两个相加时,将得出一个总和,您只能通过将这两个特定的数字相加而得到。 这是我正在谈论的示例,但有3个数字: 1个 3 5 1 + 3
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
如何将 a 和 b 之间的数字线性映射到 c 和 d 之间。 也就是说,我希望 2 到 6 之间的数字映射到 10 到 20 之间的数字...但我需要广义的情况。 我的脑子快炸了。 最佳答案 如果您的
嘿,我有一个方程式,我需要弄清楚它是基于图表的数学,其中图表上有两个点,需要获取其余值: 我正在构建一个 javascript 页面,它获取图表上的两个点,但需要吐出图表上的任何位置。 它用于根据了解
有谁知道如何用 Doxygen 得到实复场或射影平面的符号,i.o.w 符号,如 IR、IC、IP 等? 例如,我尝试了\f$\field{R}\f$,但无法识别。 非常感谢您的帮助,G. 最佳答案
我正在使用 Segment to Segment 最接近方法,该方法将输出两个长度段之间的最近距离。每个段对应一个球体对象的起点和终点。速度只是从一个点到另一个点。 即使没有真正的碰撞,最近的方法也可
我有一个 arduino 连接到 Stradella 系统钢琴 Accordion 。我在左手和弦的 12 个音符中的每一个上都有光学传感器。当我弹奏和弦时,它会触发三个传感器。如果我想让合成器演奏和
我正在开发一个具有一些简单功能的新包。现在我可以使用已经存在的“math-vectors”库中的函数;特别是“插值”和“反转”。如何在我的新包中使用这些?编写 y:=reverse(...) 显然是不
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: Integer division in JavaScript 希望这是一个简单的问题,基本上我需要这样做: 分隔线
我有一张表格,上面有学校类(class)。此表单上可以有任意数量的类,每个类有 2 个字段。书本费和学费。 我有一个名为总计的第三个字段,当他们在其他字段中输入成本时,我想更新该字段。 这就是我的设置
今天早些时候我问了一个类似的问题,结果发现我只是数学很烂,因为我也无法解决这个问题。 我通过宽度/高度计算屏幕比例。我需要一个函数来将结果数字转换为新的比例。 例如 function convertN
我有一个起始数字,因此必须仅在开始循环时将该数字乘以一个因子,然后将结果乘以另一个因子的 X 倍,然后必须将循环乘以 Y 次,最后我需要总金额...我认为最好查看数字来了解我需要什么 例如,如果我从数
现在我用 JAVA 遇到了一些问题,但不记得如何获取坐标系之间的长度。 例如。A 点 (3,7)B点(7,59) 我想知道如何计算a点和b点之间的距离。非常感谢您的回答。 :-) 最佳答案 A = (
我有两种类型的文本输入,积极的和可疑的。在将输入到这两种类型的输入中的所有数字相加后,我需要显示多组这些输入的总数。例如:2 个阳性 + 2 个可疑 = 总计:4 然后,我需要从总数中找出积极与可疑的
我正在尝试将输入金额乘以 3.5%,任何人都可以给我任何想法如何做到这一点吗? $("#invest_amount").keyup(function() { $('#fee').va
有谁知道返回a的最大数的Math方法 给定的位数。 例如,使用1位数字的最大数字是9,2是99,3是999,4是9999......等等。 使用字符串很容易实现,但这并不完全 我在找什么。 pri
我是 Knockout 的新手,但仍对它一头雾水,我想知道如何使用两个 KO 变量进行简单的数学运算(加法和乘法)。 此刻我有: self.popInc1 = ko.observable('0.3')
我在谷歌地图应用程序中有以下内容,并希望显示转换为英尺的海拔高度,但如何向上/向下舍入到最接近的数字? (消除小数点后的数字)我尝试了 number.toFixed(x) 方法,但似乎什么也没做。 f
我最近开始使用 JavaScript 编写小型 Canvas 游戏,并试图全神贯注于 Vector 2d 数学。我了解 Vectors 的基础知识(比如它们代表 2d 空间中具有方向的点,您可以对它们
我是一名优秀的程序员,十分优秀!