对没有比较器,arraylist或treeset的地图进行排序

时间:2016-04-27 02:38:18

标签: java hashmap

在存储网页上找到的单词并将其与出现次数进行映射后,您将如何按频率(从最高到最低)对它们进行排序?

我可以访问的唯一导入是Arrays,HashMap,HashSet,Map和Set。我研究了如何做到这一点,但似乎大多数人建议使用比较器或迭代器,我不想实现。

地图设置如下:找到地图=新的HashMap<>();

这是我到目前为止所拥有的:

import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import util.WebDoc;

public class Sorting{

public static void main(String[] args) throws IOException {
String url;

url = “INSERT URL HERE”;

final int numPairs = 30; // maximum number of pairs to print

// get body of the web document
String content = WebDoc.getBodyContent(url); 
String word_pattern = "[A-Za-z]{5,}";
Map<String, Integer> found = new HashMap<>(); // (word,frequency)

Matcher match = Pattern.compile(word_pattern).matcher(content);
int unique = 0;
while (match.find()) {
  String word = match.group().toLowerCase();

  System.out.println(word);  

        if (found.containsKey(word)){
            if (found.get(word)==1)
               unique--;
            found.put(word, found.get(word) +1);
        }
        else{ 
            found.put(word, 1);
            unique++;
        }
    }
}

2 个答案:

答案 0 :(得分:0)

如果您改变主意使用基本的JDK实用程序,这里有一种方法可以使用流:

List<String> sorted = found.entrySet()
        .stream()
        .sort(Comparator.comparing(Map.Entry::getValue).reversed())
        .map(Map.Entry::getKey)
        .collect(Collectors.toList());

答案 1 :(得分:0)

你不能。 HashMaps没有排序或排序,因为其元素的位置基于对象哈希值。

此任务中有一些很好的选择Sort a Map<Key, Value> by values (Java)

请检查一下:What Java Collection should I use?