前K個高頻單詞

class Solution { public: vector<string> topKFrequent(vector<string>& words, int k) { map<string, int> m; for(int i = 0; i < words.size(); ++i){ ++m[words[i]]; }
相關文章
相關標籤/搜索