1 回答
书旅
TA贡献238条经验 获得超101个赞
while(true)//国标2312
{
infile>>temp[0];
if(infile.eof()) break;
if (temp[0]>=0xB0)//GB2312下的汉字,最小是0XB0
{
s="";
continue;
}
else//非汉字字符不统计
{
s+=temp[0];
infile>>temp[1];
s+=temp[1];
}
wordcount[s]++;
s="";
}
- 1 回答
- 0 关注
- 1253 浏览
添加回答
举报
0/150
提交
取消