C++ 对一段英文进行词频统计

/** * 对一段英文的词频统计 * @Author xxingup@gmail.com * date 2010/06/17 */ #include <iostream> #include <string> using namespace std; /** * 单词对象 */ struct Word { Word() : Str(""), Count(0) {}
相关文章
相关标签/搜索