C 二进制和线性搜索
Posted
技术标签:
【中文标题】C 二进制和线性搜索【英文标题】:C Binary & Linear Search 【发布时间】:2017-10-08 12:53:10 【问题描述】:您好,我想为二进制和线性搜索算法绘制时间/数组大小图。(数组大小 = 1 000、10 000,100 000,1 000 000 的最坏、最佳和平均情况)。我正在使用 DEV C++。但是,当我运行数组大小 = 1 000 000 的代码时,程序崩溃了。这是代码:
#include <stdio.h>
int binarySearch(int arr[], int l, int r, int x)
if (r >= l)
int mid = l + (r - l)/2;
if (arr[mid] == x) return mid;
if (arr[mid] > x) return binarySearch(arr, l, mid-1, x);
return binarySearch(arr, mid+1, r, x);
return -1;
int main(void)
int arr[10] = 2,5,8,9,15,18,19,25,34,50;
int n = sizeof(arr)/ sizeof(arr[0]);
int x = 10;
int result = binarySearch(arr, 0, n-1, x);
(result == -1)? printf("Element is not present in array")
: printf("Element is present at index %d", result);
return 0;
【问题讨论】:
尝试使用动态分配的数组而不是静态分配的数组。 当它崩溃时它会告诉你什么? 你可以使用比 INT 更小的数据类型...试试 SHORT 如果x
不在数组中,您的binarySearch()
将无限递归,因为函数返回而不进行递归调用的唯一方法是如果arr[mid] == x
。 value10
不在数组中,因此崩溃。
【参考方案1】:
您正在堆栈上分配数组arr
。对于 1 000 000 个元素,您需要 4 MB 内存(假设 sizeof(int) == 4
)。例如,在 Windows 上,大多数情况下堆栈的默认限制为 1 MB。对于快速修复,将 arr
定义为 static
static int arr[size];
或将全局范围放在函数体之外,或者如其他人所说,使用动态分配。
【讨论】:
他可以改用堆,正如您在编辑中建议的那样:)以上是关于C 二进制和线性搜索的主要内容,如果未能解决你的问题,请参考以下文章