gpt4 book ai didi

C++ 程序崩溃(数组和 2 指针 binsearch 函数)

转载 作者:行者123 更新时间:2023-11-28 07:53:57 24 4
gpt4 key购买 nike

当我运行这个程序并输入一个值来搜索程序崩溃时(exe 已停止工作,关闭程序)。有一次当输入值 65 时,出现 Number not found 的无限循环 输入要搜索的值(-1 退出):

代码如下:

#include <iostream>
using namespace std;

void Search(int[], int * , int * );

int main()
{

int i,KEY,num, array[] = {98,87,76,65,54};


for(i=0;i<5;i++)
cout << array[i] << " ";

Search(array, &KEY, &num);

cout << endl;
system("pause");
return 0;
}

void Search(int arr[5], int * current, int * numel)
{

int low, high,search,N;

cout << "\nWhat Number would you like to search for? (-1 to quit) : ";
cin >> search;

while(search!=-1)
{
low=0;
high=N-1;
while(low<=high)
{
*current=(low+high)/2;
if (search > arr[*current])
low=*current+1;
else if(search<arr[*current])
high=*current-1;
else
break;
}
if(arr[*current]==search)
cout << "Number found at index " << *current << endl;
else
cout << "Number not found." << endl;
cout << "Enter a value to search (-1 to quit) :";
}
return;
}

最佳答案

对于初学者来说,如果要查找的数字不在数组中,则无法退出 Search 中的主循环。

然后你在 high 被赋予任何值之前使用它。

可能还有其他问题。你在开发它的时候是如何测试它的?

关于C++ 程序崩溃(数组和 2 指针 binsearch 函数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13149569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com