我正在尝试查找并修复此代码的问题。它是通过递归实现的二分查找。我不知道为什么它返回堆栈溢出和崩溃。
bool find( const int x, const int* pBegin, const int* pEnd)
{
int medel = (*pBegin +(( *pEnd-1) - *pBegin)/2) ;
if(x == medel)
return true ;
else if( x > medel)
{
int begin = (medel +1);
return find (x, &begin, pEnd);
}
else if( x< medel)
{
int last = (medel-1);
return find(x,pBegin, &last);
}
}
void main()
{
int arr[10];
for (int i=0;i<10;++i)
arr[i] = i;
bool hittat = find(7, &arr[0], &arr[9]);
cout << "hittat = " << hittat << endl;
system("pause");
}
当我调试代码时,我看到当函数“find”被调用时,它需要奇怪的参数,就像在这张图片中一样。
它应该取 0 和 9,而不是这些巨大的数字:/ 我的指针有什么问题吗?