码迷,mamicode.com
首页 > 其他好文 > 详细

Top K Frequent Words

时间:2019-04-21 09:56:16      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:get   odi   lov   sorted   put   queue   class   while   compare   

Given a non-empty list of words, return the k most frequent elements.

Your answer should be sorted by frequency from highest to lowest. If two words have the same frequency, then the word with the lower alphabetical order comes first.

Example 1:

Input: ["i", "love", "leetcode", "i", "love", "coding"], k = 2
Output: ["i", "love"]
Explanation: "i" and "love" are the two most frequent words.
    Note that "i" comes before "love" due to a lower alphabetical order.

Example 2:

Input: ["the", "day", "is", "sunny", "the", "the", "the", "sunny", "is", "is"], k = 4
Output: ["the", "is", "sunny", "day"]
Explanation: "the", "is", "sunny" and "day" are the four most frequent words,
    with the number of occurrence being 4, 3, 2 and 1 respectively.

 Note:

  1. You may assume k is always valid, 1 ≤ k ≤ number of unique elements.
  2. Input words contain only lowercase letters.

Follow up:

  1. Try to solve it in O(n log k) time and O(n) extra space.

解法:hashmap + priority queue

 1 class Solution {
 2     public List<String> topKFrequent(String[] words, int k) {
 3 
 4         List<String> result = new LinkedList<>();
 5         Map<String, Integer> map = new HashMap<>();
 6         for (int i = 0; i < words.length; i++) {
 7             map.put(words[i], map.getOrDefault(words[i], 0) + 1);
 8         }
 9 
10         PriorityQueue<Map.Entry<String, Integer>> pq = new PriorityQueue<>(
11                 (a, b) -> a.getValue() == b.getValue() ? b.getKey().compareTo(a.getKey()) : a.getValue() - b.getValue());
12 
13         for (Map.Entry<String, Integer> entry : map.entrySet()) {
14             pq.offer(entry);
15             if (pq.size() > k) {
16                 pq.poll();
17             }
18         }
19 
20         while (!pq.isEmpty()) {
21             result.add(0, pq.poll().getKey());
22         }
23 
24         return result;
25     }
26 }

 

Top K Frequent Words

标签:get   odi   lov   sorted   put   queue   class   while   compare   

原文地址:https://www.cnblogs.com/beiyeqingteng/p/10743742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!