二分查找应用实现
int BinarySearch(int a[], int size, int p)
{
int L = 0; //查找区间左端点
int R = size-1; //查找区间右端点
wh
2022-10-09