基本上我需要找出如何在屏幕上输出值作为二进制搜索的成功部分。我试图更改last
的初始值,但它崩溃或保持不变。我逐步完成了代码,一切似乎都正常。
来自编译器的程序样本
#include<iostream>
using namespace std;
void binarySearch();
int main()
{
//Called the function in main
binarySearch();
system("pause");
return 0;
};
//void function for binary Search
void binarySearch()
{
//creating array
int array[100];
array[0] = 1;
int i,target;
// using Boolean to create pattern for generated numbers in the array
bool check = false;
//loop to implement pattern
for (int x = 1; x < 100; x++)
{
if (check == true)
{
array[x] = array[x - 1] + 1;
check = false;
}
else
{
array[x] = array[x - 1] + 2;
check = true;
}
}
**Code found online and modified to fit**
int first,mid,last,completed,successful,tests;
completed = 0;
successful = 0;
tests = 0;
double percentage;
percentage = 1;
for(int x=0;x<100;x++)
{
// Initialize first and last variables.
first = 0;
last = 2;
srand( (unsigned)time( NULL ) );
int target = (rand() % 150) + 1;
while(first <= last)
{
mid = (first + last)/2;
if(target > array[mid])
{
first = mid + 1;
tests++;
}
else if(target < array[mid])
{
last = mid + 1;
tests++;
}
else
{
first = last - 1;
}
if(target == array[mid])
{
successful++;
}
}
completed++;
}
**Area which the error occur No value for successful**
//Output on screen
cout << endl;
cout << "There were "<< completed <<" searches completed."<< endl;
cout << "There were "<< successful <<" successful searches." << endl;
cout << percentage <<"%"<<" of the searches were successful." << endl;
cout << "There was an average of " << completed << " tests per search." << endl;
cout << endl;
}
答案 0 :(得分:1)
我想我首先要将代码分解成更小的部分,每个部分我都至少可以理解;我不够聪明,不能确保我理解为binarySearch
的“大块”。
看起来很像:
int array[100];
array[0] = 1;
int i,target;
// using Boolean to create pattern for generated numbers in the array
bool check = false;
//loop to implement pattern
for (int x = 1; x < 100; x++)
{
if (check == true)
{
array[x] = array[x - 1] + 1;
check = false;
}
else
{
array[x] = array[x - 1] + 2;
check = true;
}
}
应该初始化一个数组,所以我把它放在一个单独的函数中,然后稍微简化一下。首先进入一个功能:
int init(int array[100]) {
array[0] = 1;
int i,target;
// using Boolean to create pattern for generated numbers in the array
bool check = false;
//loop to implement pattern
for (int x = 1; x < 100; x++)
{
if (check == true)
{
array[x] = array[x - 1] + 1;
check = false;
}
else
{
array[x] = array[x - 1] + 2;
check = true;
}
}
}
然后简化:
int init(int *array) {
array[0] = 1;
for (int i=1; i<100; i++)
array[i] = array[i-1] + 1 + (i&1);
}
然后我对binarySearch
的二进制搜索部分大致相同:
while(first <= last)
{
mid = (first + last)/2;
if(target > array[mid])
{
first = mid + 1;
tests++;
}
else if(target < array[mid])
{
last = mid + 1;
tests++;
}
else
{
first = last - 1;
}
if(target == array[mid])
{
successful++;
}
并简化:
int *binary_search(int const *left, int const *right, int *tests, int val) {
int const *mid = left + (right - left)/2;
while (left < right) {
++*tests;
if (val < *mid)
right = mid;
else
left = mid + 1;
}
return left;
}
最后,您需要使用代码生成随机数,搜索它,跟踪搜索次数的统计数据以及成功的数量等。
答案 1 :(得分:0)
你有几个问题。
首先,正如我评论的那样,您没有正确初始化last
。
其次,在else if(target < array[mid])
案例中,您没有正确修改last
。您正在设置last = mid + 1;
,但您需要设置last = mid - 1;
接下来,您没有正确退出循环。如果第一个&gt;您只退出while循环最后,但你应该退一次target == array[mid]
;也许战略break;
声明会有所帮助。
当我进行这三项更改时,应用程序每次都会运行直至完成,但是我会收到0或100次成功搜索 - 两者之间没有任何内容。
这应该足以让你更进一步。