我试着把一个向量作为一个函数的参数,但是我不知道怎么让它工作。尝试了许多不同的方法,但它们都提供了不同的错误消息。 我只包含了代码的一部分,因为只有这一部分不能工作。 (向量“随机”填充了0到200之间的随机值,但是进行了排序)
更新了代码:
#include <iostream>
#include <ctime>
#include <algorithm>
#include <vector>
using namespace std;
int binarySearch(int first, int last, int search4, vector<int>& random);
int main()
{
vector<int> random(100);
int search4, found;
int first = 0;
int last = 99;
found = binarySearch(first, last, search4, random);
system("pause");
return(0);
}
int binarySearch(int first, int last, int search4, vector<int>& random)
{
do
{
int mid = (first + last) / 2;
if (search4 > random[mid])
first = mid + 1;
else if (search4 < random[mid])
last = mid - 1;
else
return mid;
} while (first <= last);
return -(first + 1);
}