leetcode692+出現次數作多的K單詞,優先隊列,注意重寫排序語法

https://leetcode.com/problems/top-k-frequent-words/description/code struct cmp{ bool operator()(pair<int,string>a, pair<int, string>b) { if(a.first==b.first) return a.second>b.second;
相關文章
相關標籤/搜索