1 Star 0 Fork 1

su0608/CPP_study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.cc 1017 Bytes
一键复制 编辑 原始数据 按行查看 历史
su0608 提交于 2024-11-17 14:17 . 更新Reactor_v5
#include <iostream>
#include <string>
#include <unordered_map>
#include <sstream>
#include <stringstream>
using namespace std;
using std::string;
void DealWord(string & word){
for(auto & ch : word){
if(isalpha(ch) && toupper(ch)){
ch = tolower(ch);
}else if(ispunct(ch)){
ch = ' ';
}else if(isalnum(ch)){
ch = ' ';
}
}
if(word.empty()){
return;
}
}
void test(){
unordered_map<string,int> map;
ifstream ifs("../search-engine/yuliao/english.txt");
string strline;
while(getline(ifs,strline)){
istringstream iss(strline);
string word;
while(iss >> word){
DealWord(word);
istringstream sst(word);
string info;
while(sst >> info){
++map[word];
}
}
}
for(auto & ele :map){
cout << ele.first << " " << ele.second << "\n";
}
ifs.close();
}
int main()
{
test();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/CCC__GGG/cpp_study.git
git@gitee.com:CCC__GGG/cpp_study.git
CCC__GGG
cpp_study
CPP_study
master

搜索帮助