692. Top K Frequent Words**

本文介绍了LeetCode上编号692的题目“前K个高频单词”的解题思路及两种C++实现方法。通过使用哈希表和优先队列,文章详细解释了如何在O(nlogk)时间内找到输入单词列表中出现频率最高的前K个单词,并按字母顺序排列相同频率的单词。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

692. Top K Frequent Words**

https://leetcode.com/problems/top-k-frequent-words/description/

题目描述

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:

  • You may assume k is always valid, 1 ≤ k ≤ number of unique elements.
  • Input words contain only lowercase letters.
    Follow up:
    Try to solve it in O ( n log ⁡ k ) O(n \log k) O(nlogk) time and O ( n ) O(n) O(n) extra space.

解题思路

使用哈希表以及优先队列来解决. 但是优先队列要自定义比较运算.

C++ 实现 1

这是两年前的代码, 使用的是最大堆. 但是用最大堆存在的问题是:

for (auto &iter : freq)
    Queue.push(make_pair(iter.second, iter.first));

这一步的时间复杂度不是 O ( n log ⁡ k ) O(n \log k) O(nlogk), 因为此时最大堆中的元素不止 k k k 个. 所以更符合题目要求的实现应该看 C++ 实现 2.

class Solution {
private:
    struct Comp {

        bool operator()(const pair<int, string> &p1, const pair<int, string> &p2) {
            if (p1.first < p2.first || (p1.first == p2.first && p2 < p1))
                return true;
            return false;
        }
    };
public:
    vector<string> topKFrequent(vector<string>& words, int k) {
        unordered_map<string, int> freq;
        for (auto &s : words)
            freq[s] ++;
        priority_queue<pair<int, string>, vector<pair<int, string>>, Comp> Queue;
        for (auto &iter : freq)
            Queue.push(make_pair(iter.second, iter.first));

        vector<string> res;
        while (k --) {
            auto ele = Queue.top();
            Queue.pop();
            res.push_back(ele.second);
        }
        return res;
    }
};

C++ 实现 2

这里使用的最小堆, 始终保持堆的大小为 k k k, 那么最后最小堆中保存的元素是前 k k k 个最大值. 这里介绍一下 Comp 的实现. 由于是最小堆, 所以要满足

p.second > q.second // 返回 True

另外, 当 p.second == q.second 时, 为了让元素按照字典序排序, 那么

p.first < q.first

应该被满足.

class Solution {
private:
    struct Comp {
        bool operator()(const std::pair<string, int> &p,
                        const std::pair<string, int> &q) {
            return p.second > q.second || (p.second == q.second && p.first < q.first);
        }
    };
public:
    vector<string> topKFrequent(vector<string>& words, int k) {
        unordered_map<string, int> counter;
        for (auto &s : words) counter[s] ++;
        priority_queue<std::pair<string, int>,
                       vector<std::pair<string, int>>,
                       Comp> Q;
        for (auto &p : counter) {
            Q.push(p);
            if (Q.size() > k) Q.pop();
        }
        vector<string> res;
        while (!Q.empty()) {
            auto p = Q.top();
            res.push_back(p.first);
            Q.pop();
        }
        std::reverse(res.begin(), res.end());
        return res;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值