java.util.ArrayListをインポートします。
java.util.Collectionsをインポートします。
java.util.HashMapをインポートします。
java.util.Listをインポートします。
java.util.Mapをインポートします。
パブリック クラス WordsStatistics {
クラスオブジェクト{
int カウント ;
Obj(int カウント){
this.count = カウント;
}
}
public List<WordCount> 統計情報(文字列単語) {
List<WordCount> rs = new ArrayList<WordCount>();
マップ <String,Obj> マップ = new HashMap<String,Obj>();
if(単語 == null ) {
null を返します。
}
word = 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", "");
文字列 [] wordArray = word.split(" ");
for(String simpleWord : wordArray) {
simpleWord = simpleWord.trim();
if (simpleWord != null && !simpleWord.equalsIgnoreCase("")) {
Obj cnt = map.get(simpleWord);
if ( 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>(){
@オーバーライド
public int Compare(WordCount o1, WordCount o2) {
int 結果 = 0 ;
if (o1.getCount() > o2.getCount() ) {
結果 = -1;
}else if (o1.getCount() < o2.getCount()) {
結果 = 1;
}それ以外 {
int strRs = o1.getWord().compareToIgnoreCase(o2.getWord());
if ( strRs > 0 ) {
結果 = 1;
}それ以外 {
結果 = -1 ;
}
}
結果を返します。
}
});
rsを返します。
}
public static void main(String args[]) {
String word = "Pinterest はマーケティング担当者の夢かもしれません - このサイトは主に製品を厳選するために使用されています " ;
WordsStatistics s = 新しい WordsStatistics();
List<WordCount> rs = s.statistics(word);
for(WordCount word1 : rs) {
System.out.println(word1.getWord()+"*"+word1.getCount());
}
}
}