C++ 對一段英文進行詞頻統計

/** * 對一段英文的詞頻統計 * @Author xxingup@gmail.com * date 2010/06/17 */ #include <iostream> #include <string> using namespace std; /** * 單詞對象 */ struct Word { Word() : Str(""), Count(0) {}
相關文章
相關標籤/搜索