Question
Given a list of strings, write a function to get the kth most frequently occurring string.
eg.
1 2 3 4 |
kthMostFrequent({"a","b","c","a","b","a"}, 0) = "a" kthMostFrequent({"a","b","c","a","b","a"}, 1) = "b" kthMostFrequent({"a","b","c","a","b","a"}, 2) = "c" kthMostFrequent({"a","b","c","a","b","a"}, 3) = null |
Once you think that you’ve solved the problem, click below to see the solution.
As always, remember that practicing coding interview questions is as much about how you practice as the question itself. Make sure that you give the question a solid go before skipping to the solution. Ideally if you have time, write out the solution first by hand and then only type it into your computer to verify your work once you've verified it manually. To learn more about how to practice, check out this blog post.
Solution
How was that problem? You can check out the solution in the video below.
Here is the source code for the solution shown in the video:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
public String kthMostFrequent(String[] strings, int k) { HashMap<String, Integer> map = new HashMap<String, Integer>(); for (String s : strings) { Integer x = map.get(s); if (x == null) x = 0; map.put(s, ++x); } List list = new ArrayList(map.entrySet()); Collection.sort(list, new Comparator() { public int compare(Object o1, Object o2) { Integer v1 = (Integer) ((Map.Entry) o1).getValue(); Integer v2 = (Integer) ((Map.Entry) o2).getValue(); return v1.compareTo(v2); } }); if (list.size() > k) return (String) (list.get(k)).getKey(); return null; } |
Did you get the right answer to this coding interview question? Please share your thoughts in the comments below.