1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
单词识别.txt 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2022-11-01 14:07 . 单词识别
https://www.nowcoder.com/practice/16f59b169d904f8898d70d81d4a140a0?tpId=94&tqId=31064&rp=1&ru=%2Factivity%2Foj&qru=%2Fta%2Fbit-kaoyan%2Fquestion-ranking&tPage=2
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main()
{
string str;
getline(cin, str);
//转换
for (size_t i = 0; i < str.size(); i++)
{
if ('A' <= str[i] && str[i] <= 'Z')
{
str[i] += 32;
}
}
str[str.size()-1]=' '; //句号处理一下
//统计
map<string, int> m;
for (size_t i = 0; i < str.size(); i++)
{
string s = "";
while (i < str.size() && str[i] != ' ')
{
s += str[i];
i++;
}
//单词,个数统计
if(!s.empty())
{
m[s]++;
s.clear(); // 清理一下
}
}
map<string, int>::iterator it = m.begin();
while (it != m.end())
{
cout << (*it).first << ":" << (*it).second << endl;
++it;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助