java使用treemap做词频统计wordcount(字母排序alphabet和词频排序descending freq.)

import java.util.*;

public class Test {

    static List<Map.Entry<String, Integer>> getWordInDescendingFreqOrder(Map<String, Integer> wordCount) {

        // Convert map to list of <String,Integer> entries
        List<Map.Entry<String, Integer>> list =
                new ArrayList<>(wordCount.entrySet());

        // Sort list by integer values
        Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {
            public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) {
                // compare o2 to o1, instead of o1 to o2, to get descending freq. order
                return (o2.getValue()).compareTo(o1.getValue());
            }
        });

        return list;
    }

    public static void main(String[] args) {

        // format article to simple words
        String article = Test.article
                .replace("'", "")
                .replace("’", "")
                .replace("?", " ")
                .replace("!", " ")
                .replace("“"," ")
                .replace("”"," ")
                .replace(";", " ")
                .replace(",", " ")
                .replace(".", " ")
                .replace("\n", " ");
        System.out.println("words to be sorted:\n" + article + "\n");

        //tree map sort by alphabet
        String[] words = article.split("\\s+");
        TreeMap<String, Integer> wordCount = new TreeMap<>();

        for (String word : words) {
            Integer count = wordCount.get(word);
            if (count == null) {
                wordCount.put(word, 1);
            } else {
                wordCount.put(word, count + 1);
            }
        }

        System.out.println("word count alphabet sort:");
        for (String key : wordCount.keySet()) {
            System.out.println(key + "-" + wordCount.get(key));
        }

        System.out.println("\nword count descend sort:");
        List<Map.Entry<String, Integer>> wordCountDescend = Test.getWordInDescendingFreqOrder(wordCount);
        for (Map.Entry<String, Integer> one : wordCountDescend) {
            System.out.println(one.getKey() + "-" + one.getValue());
        }

    }

    public static String article = "It is no mean feat to be one of the top-ten trending hashtags on Weibo, China’s equivalent of Twitter, for 20 consecutive days and counting. “All is Well”, a show on provincial television which premiered on March 1st, has done just that. The show tells the story of a fictional Chinese family torn by internal conflict. The female protagonist, Su Mingyu, is barely on speaking terms with her widowed father and one of her two brothers. The father is a nagging crank who expects his two adult sons to bankroll his lavish tastes. This leads to constant bickering between the brothers, neither of whom wants to be called unfilial.";

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值