導入java.util.ArrayList;
導入java.util.Collections;
導入java.util.HashMap;
導入java.util.List;
導入java.util.Map;
公共類別WordsStatistics {
類別 Obj {
整數計數;
對象(整數計數){
this.count = 計數;
}
}
公共列表 <WordCount> 統計資料(字串單字){
List<WordCount> rs = new ArrayList<WordCount>();
Map <String,Obj> map = new HashMap<String,Obj>();
如果(字==空){
返回空值;
}
字 = word.toLowerCase();
word = word.replaceAll("'s", "");
word = word.replaceAll(",", "");
word = word.replaceAll("-", "");
word = word.replaceAll("//.", "");
word = word.replaceAll("'", "");
word = word.replaceAll(":", "");
word = word.replaceAll("!", "");
word = word.replaceAll("/n", "");
String[] wordArray = word.split(" ");
for(字串 simpleWord : wordArray) {
simpleWord = simpleWord.trim();
if (simpleWord != null && !simpleWord.equalsIgnoreCase("")) {
Obj cnt = map.get(simpleWord);
如果(cnt!= null){
cnt.count++;
}別的 {
map.put(simpleWord, new Obj(1));
}
}
}
for(字串鍵:map.keySet()) {
WordCount wd = new WordCount(key,map.get(key).count);
rs.add(wd);
}
Collections.sort(rs, new java.util.Comparator<WordCount>(){
@覆蓋
公共 int 比較(字數 o1,字數 o2){
整數結果 = 0 ;
if (o1.getCount() > o2.getCount() ) {
結果=-1;
}否則 if (o1.getCount() < o2.getCount()) {
結果=1;
}別的 {
int strRs = o1.getWord().compareToIgnoreCase(o2.getWord());
如果(strRs> 0){
結果=1;
}別的 {
結果=-1;
}
}
返回結果;
}
});
返回RS;
}
公共靜態無效主(字串參數[]){
String word =「Pinterest 可能是 aa ab aa ab 行銷人員的夢想 - 網站主要用於策劃產品」;
WordsStatistics s = new WordsStatistics();
List<WordCount> rs = s.statistics(word);
for(WordCount word1 : rs) {
System.out.println(word1.getWord()+"*"+word1.getCount());
}
}
}