我编写了一个简单的代码,将2,4,8,16,32,3,9,27,5,6,7插入到矢量对象中。 插入这些数字后,我用std :: binary_search检查8,但奇怪的是它返回0。
这是代码。我不知道为什么。有人能帮助我吗? 非常感谢!
#include <iostream>
#include <math.h>
#include <vector>
#include <algorithm>
using namespace std;
void printVector(vector<int>const & p) {
for (int i = 0; i < p.size(); i++)
cout << p[i] << ' ';
cout << endl;
}
int main() {
const int max = 100;
int num;
vector<int> base;
for (int i = 2; i <= 7; i++) {
int expo = log(max) / log(i);
num = 1;
for (int iexp = 1; iexp < expo; iexp++) {
num *= i;
if (!binary_search(base.begin(), base.end(), num)) { // If the number is not in the vector
base.push_back(num); // Insert the number
printVector(base); // Reprint the vector
cout << endl;
}
}
}
cout << binary_search(base.begin(), base.end(), 8) << endl;
printVector(base);
return 0;
}
答案 0 :(得分:7)
必须为std::binary_search
排序序列。如果序列未排序,则行为未定义。
您可以先使用std::sort
对其进行排序,或者根据您需要的效果,您可以使用std::find
进行线性搜索。
答案 1 :(得分:4)
二进制搜索需要对矢量进行排序。如果以随机顺序插入值,则二进制搜索的结果将是不可预测的。
答案 2 :(得分:3)
std::binary_search
仅适用于已排序的序列。您需要先对矢量进行排序。