yuAriellexi 2018-09-06 13:04 采纳率: 100%
浏览 1021
已采纳

Sort错误使用,no matching function, c++

#include <iostream>
#include <algorithm>
#include <string>
#include <cctype>
#include <vector>
using std::cin;
using std::cout;
using std::endl;
using std::string;
using std::vector;
using std::sort;

struct node
{
    int x, y;
};


bool cmp(int a, int b)//double also works
{
    return a > b;
}

bool cmp(node a, node b)
{
    if (a.x != b.x)
    {
        return a.x > b.x;
    }
    else
    {
        return a.y > b.y;
    }
}

int main()
{
    int array[5] = {1, 2, 3, 4, 5};
    sort(array, array+5);
    for (int i = 0; i < 5; i++)
    {
        cout << array[i];
    }

    sort(array, array+5, cmp);
    for (int i = 0; i < 5; i++)
    {
        cout << array[i];
    }

    vector <node> stu;
    stu[0].x = 2;
    stu[0].y = 1;
    stu[1].x = 2;
    stu[1].y = 3;
    stu[2].x = 4;
    stu[2].y = 0;
    sort(stu.begin(), stu.end(), cmp);

    for (int i = 0; i < 3; i++)
    {
        cout << stu[i].x << " " << stu[i].y << endl;
    }
}

error: no matching function for call to 'sort'
sort(array, array+5, cmp);
error: no matching function for call to 'sort'
sort(stu.begin(), stu.end(), cmp);

这段代码报错
为什么会错,sort也可以用于int类型数组呀

  • 写回答

3条回答 默认 最新

  • threenewbee 2018-09-06 13:18
    关注

    几个问题:
    (1)array是关键字,修改为array1
    (2)cmp具有函数重载,然而sort不能认函数重载,所以必须分开来。将另一个定义为cmp1
    (3)vector stu;这里需要添加3个元素,才能用下标0 1 2访问。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 51寻迹小车定点寻迹
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含