这批词里哪个出现得最多
一批搜索词:苹果、香蕉、苹果、梨、香蕉、苹果。运行下面这段程序:
#include <algorithm>
#include <iostream>
#include <map>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
map<string, int> word_count(const vector<string>& words) {
map<string, int> c;
for (const string& w : words) c[w]++;
return c;
}
string top_word(const vector<string>& words) {
map<string, int> c = word_count(words);
string best = "";
for (const auto& kv : c) {
if (best == "" || kv.second > c[best]) best = kv.first;
}
return best;
}
int main() {
cout << top_word({"苹果", "香蕉", "苹果", "梨", "香蕉", "苹果"}) << endl;
}
(本题用 g++ -std=c++17 -O0 编译。)
全部评论