轻松的编程学习
首页
题库
学习路径
在线商城
能力地图
下载应用
登录 / 注册
菜单
实现 top:出现最多的是哪个
👁️ 0 人浏览
💬 0 人评论
❤️ 添加收藏
补全
top_word
:返回出现次数最多的那个词。
(本题用
g++ -std=c++17 -O0
编译。)
提交你的答案
请登录后提交答案。
去登录
← 实现词频统计
三个操作串起来验一遍 →
更多题目
改成"你好,有词"
输出"100 分"
把年龄改成 20
输出学习天数 30
修复:给文字加引号
修复:补上右括号
代码编辑器
语言:
python3
c11
cpp17
Ctrl
+
Enter
运行
👩🏫 AI
▶ 运行代码
重置代码
打印代码
#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); // TODO: 先拿一个空字符串当擂主,再一个个比过去,次数更多的当新擂主 return ""; } int main() { cout << top_word({"苹果", "香蕉", "苹果", "梨", "香蕉", "苹果"}) << endl; }
本次输入:
输出:
👩🏫
AI
请登录后使用 AI 老师
×
登录后可获得解题思路、提示与错误分析。
去登录
关闭
🎉
恭喜你,回答正确!
系统判定:正确
我知道了
💬 题目评论
提交
全部评论
全部评论