用集合判重要比多少次
同样 100 条,改用集合。运行下面这段程序:
#include <algorithm>
#include <iostream>
#include <map>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
long long set_ops(int n) {
// 集合判重:每条只算一次位置
long long ops = 0;
unordered_set<int> seen;
for (int i = 0; i < n; i++) {
ops++;
seen.insert(i);
}
return ops;
}
int main() {
cout << set_ops(100) << endl;
}
(本题用 g++ -std=c++17 -O0 编译。)
全部评论