报错解决:Char 37: error: reference to non-static member function must be called sort(store,,mycmp);

在leetcode347. 前 K 个高频元素使用sort函数时发生错误:

查阅资料后,我得知这是因为我在类成员函数中调用三个参数的sort(),并且也将mycmp函数定义为类成员函数,需要将cmp函数在类中定义为static。

还有另一种方法就是把mycmp函数定义在solution类的外面,就没有这个问题。

代码如下:

bool mycmp(const pair<int,int>&p1,const pair<int,int>&p2){

    return p1.second>p2.second;

}

class Solution {

public:

    vector<int> topKFrequent(vector<int>& nums, int k) {

    unordered_map<int,int>map1;

    for(int i=0;i<nums.size();i++){

        map1[nums[i]]++;

    }

    vector<int>ar(k);

    pair<int,int>store[nums.size()];int i=0;

    for(auto it=map1.begin();it!=map1.end();it++){

        store[i].first=it->first;

        store[i].second=it->second;

        i++;

    }

     sort(store,store+nums.size()-1,mycmp);

    for(i=0;i<k;i++){

         ar[i]=store[i].first;

    }

    return ar;

    }

};

由于没有系统的学过c++对this的理解还不到位,不太明白最后的那一段话,日后再回来看。

 参考资料:错误解决方法:error: reference to non-static member function must be called_alex_mist的博客-CSDN博客

  • 3
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值