各位好 小弟C++菜逼八
今天写leetcode30天的时候遇到sort函数的问题搞不懂是为什么所以上来发问,请各位指点迷津
这是今天leetcode的题目 :
https://leetcode.com/explore/challenge/card/july-leetcoding-challenge/546/week-3-july-15th-july-21st/3393/
我的解法是:
1. 用map<int 数字,int 频率>统计频率
2. map内丢到vector<pair<int 数字,int 频率>>的num_freq
3. 对num_freq做vector<pair<int,int>>的排序(依照pair->second做大到小排序)
先讲结论跟想问的,后面再补code and ref
//问题点如下
问题出在第三步对pair做排序时
法一在leetcode上run compile error,但是在codeblock运行ref的范例没问题
改成法二leetcode上就可以跑了
想知道为什么法一要改成法二才可以?
//code and reference
法1:ref
https://www.geeksforgeeks.org/sorting-vector-of-pairs-in-c-set-1-sort-by-first-and-second/
法1执行结果如截图http://i.imgur.com/Su0ou9f.jpg http://i.imgur.com/qB2mSsB.jpg
法2:ref
https://www.itread01.com/content/1544616191.html
法2执行结果如截图http://i.imgur.com/kQlU7tU.jpg