zoukankan      html  css  js  c++  java
  • java collection.frequency方法

    collection.frequency方法,可以统计出某个对象在collection中出现的次数
    比如:
    frequency(Collection<?> c, Object o)
           则在collection中,找出o的次数,比如用在统计中就很有用了,比如代码:

        @SuppressWarnings("unchecked")  
        public static void main(String[] args) {  
          
        String text = "a r b k c d se f g a d f s s f d s ft gh f ws w f v x s g h d h j j k f sd j e wed a d f";  
          
        List<String> list = new ArrayList<String>();  
        list.addAll(Arrays.asList(text.split(" ")));  
          
        Set<String> uniqueWords = new HashSet<String>(list);  
        for (String word : uniqueWords) {  
        System.out.println(word + ": " + Collections.frequency(list, word));  
        }  
        }  
    
  • 相关阅读:
    CF1208C
    CF1208B
    CF1208A
    CF1206A
    wqy的C题
    wqy的B题
    [POI2005]SAM-Toy Cars
    Gym
    操作系统学习---进程
    C++多线程(POSIX)
  • 原文地址:https://www.cnblogs.com/interdrp/p/8085098.html
Copyright © 2011-2022 走看看