3

In the code I have posted below, I need to remove the duplicates from the HashMap (the highest alphabetical value gets to stay in the map) and print the keys of the k highest values after the duplicates are removed. How do I do this? I tried with a HashSet but I am pretty clueless.

public ArrayList<String> mostOften(int k)
    {
        ArrayList<String> lista = new ArrayList<String>();
        HashMap<String,Integer> temp = new HashMap<String, Integer>();

        for(String it : wordList)
        {
            if(temp.containsKey(it))
                temp.put(it, temp.get(it)+1);
            else
                temp.put(it, 1);
        }

        temp = sortByValues(temp);

        Set<Integer> set = new HashSet<Integer>(temp.values());
        System.out.println(set);

        return lista;
    }

    private static HashMap sortByValues(HashMap map) 
    { 
        List list = new LinkedList(map.entrySet());
        Collections.sort(list, new Comparator() 
                         {
                             public int compare(Object o1, Object o2) 
                             {
                                 return ((Comparable)((Map.Entry) (o1)).getValue()).compareTo(((Map.Entry) (o2)).getValue());
                             }
                         });

        HashMap sortedHashMap = new LinkedHashMap();
        for (Iterator it = list.iterator(); it.hasNext();) 
        {
            Map.Entry entry = (Map.Entry) it.next();
            sortedHashMap.put(entry.getKey(), entry.getValue());
        } 
        return sortedHashMap;
    }
Hydroxis
  • 95
  • 1
  • 12

3 Answers3

6

If you are trying to do a frequency count of words you are heading down the wrong road. Java 8 does this much easier and cleaner.

You need these imports

import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

The code

public static void main(String[] args) {
    printTopWords(Arrays.asList("Hello World Hello , Bye World".split(" ")), 2);
}

public static void printTopWords(List<String> words, int limit) {
    // using the Stream API
    words.stream()
            // create a map of words with the count of those words
            .collect(Collectors.groupingBy(w -> w, Collectors.counting()))
            // take that map as a stream of entries
            .entrySet().stream()
            // sort them by count in reverse order
            .sorted(Comparator.comparing(Map.Entry<String, Long>::getValue).reversed())
            // limit the number to get top Strings
            .limit(limit)
            // keep just the key ie. drop the count.
            .map(Map.Entry::getKey)
            // print them
            .forEach(System.out::println);
}

prints

Hello
World
Peter Lawrey
  • 525,659
  • 79
  • 751
  • 1,130
1

If you are not familiar with java 8 streams and lambdas then below answer would be helpful to you :

public class Java7Way {

public static void main(String[] args) {
    Map<String, Integer> myMap = new HashMap<>();
    myMap.put("A", 20);
    myMap.put("A", 38);
    myMap.put("B", 40);
    myMap.put("K", 23);
    System.out.println(sortByValue(myMap,2).toString());
}

public static <K, V extends Comparable<? super V>> Map<K, V>
        sortByValue(Map<K, V> map,int limit) {
    List<Map.Entry<K, V>> list
            = new LinkedList<>(map.entrySet());
    Collections.sort(list, new Comparator<Map.Entry<K, V>>() {
        @Override
        public int compare(Map.Entry<K, V> o1, Map.Entry<K, V> o2) {
            return (o1.getValue()).compareTo(o2.getValue());
        }
    }
            .reversed()//to arrange it in decending order
    );
    Map<K, V> result = new LinkedHashMap<>();//maintains the order which the entries were put into the map
    for (Map.Entry<K, V> entry : list) {
        if (limit == 0) {
            break;
        }
        result.put(entry.getKey(), entry.getValue());
        limit--;
    }
    return result;
}

}

Out-put :

{B=40, A=38}
Madushan Perera
  • 2,568
  • 2
  • 17
  • 36
0

I recommend using TreeBidiMap from Apache Commons Collection. In this structure all keys and all values sorted according to the natural order for the key's and value's classes.

For your code:

    BidiMap<String,Integer> temp = new TreeBidiMap<String, Integer>();
    for(String it : wordList)
    {
        if(temp.containsKey(it))
            temp.put(it, temp.get(it)+1);
        else
            temp.put(it, 1);
    }

    // print values unsing natural sorting in reverse order          
    BidiMap inverse = temp.inverseBidiMap();
    for (MapIterator it = inverse.mapIterator(); it.hasPrevious();) {
       String k = it.next();
       Integer s = it.getValue();  
       System.out.printLn(s + " = " + k);
    }
Slava Vedenin
  • 58,326
  • 13
  • 40
  • 59