c++ 如何使用lambda进行排序?

x33g5p2x  于 2023-08-09  发布在  其他
关注(0)|答案(4)|浏览(127)
sort(mMyClassVector.begin(), mMyClassVector.end(), 
    [](const MyClass & a, const MyClass & b)
{ 
    return a.mProperty > b.mProperty; 
});

字符串
我想使用lambda函数来排序定制类,而不是绑定示例方法。但是,上面的代码会产生错误:
错误C2564:'常量字符 *':到内置类型的函数样式转换只能使用一个参数
boost::bind(&MyApp::myMethod, this, _1, _2)配合使用时效果很好。

baubqpgj

baubqpgj1#

明白了

升序:

std::ranges::sort(mMyClassVector, [](const MyClass &a, const MyClass &b)
{ 
    return a.mProperty < b.mProperty; 
});

字符串

降序:

std::ranges::sort(mMyClassVector, [](const MyClass &a, const MyClass &b)
{ 
    return a.mProperty > b.mProperty; 
});


当使用比C++20更旧的标准时,可以使用std::sort(mMyClassVector.begin(), mMyClassVector.end(), ...)

f0brbegy

f0brbegy2#

您可以这样使用它:

#include<array>
#include<functional>
using namespace std;
int main()
{
    array<int, 10> arr = { 1,2,3,4,5,6,7,8,9 };

    sort(begin(arr), 
         end(arr), 
         [](int a, int b) {return a > b; });

    for (auto item : arr)
      cout << item << " ";

    return 0;
}

字符串

lp0sw83n

lp0sw83n3#

问题可能出在“a.mProperty > b.mProperty”行上吗?下面的代码可以正常工作:

#include <algorithm>
#include <vector>
#include <iterator>
#include <iostream>
#include <sstream>

struct Foo
{
    Foo() : _i(0) {};

    int _i;

    friend std::ostream& operator<<(std::ostream& os, const Foo& f)
    {
        os << f._i;
        return os;
    };
};

typedef std::vector<Foo> VectorT;

std::string toString(const VectorT& v)
{
    std::stringstream ss;
    std::copy(v.begin(), v.end(), std::ostream_iterator<Foo>(ss, ", "));
    return ss.str();
};

int main()
{

    VectorT v(10);
    std::for_each(v.begin(), v.end(),
            [](Foo& f)
            {
                f._i = rand() % 100;
            });

    std::cout << "before sort: " << toString(v) << "\n";

    sort(v.begin(), v.end(),
            [](const Foo& a, const Foo& b)
            {
                return a._i > b._i;
            });

    std::cout << "after sort:  " << toString(v) << "\n";
    return 1;
};

字符串
输出为:

before sort: 83, 86, 77, 15, 93, 35, 86, 92, 49, 21,
after sort:  93, 92, 86, 86, 83, 77, 49, 35, 21, 15,

7cjasjjr

7cjasjjr4#

你可以像这样对数组排序:

#include <bits/stdc++.h>
using namespace std;
int main() {
    int q[] = {1, 3, 5, 7, 9, 2, 4, 6, 8 ,10};
    sort(q, q + 10, [&](int A, int B) { return A < B; });
    for (int i = 0; i < 10; i++)
        cout << q[i] << ' ';
    return 0;
}

个字符
我总是喜欢在acm竞赛中使用lambda对结构体数组进行排序,如下所示:

struct item {
    int a, b;
};

vector<item> q;

sort(q.begin(), q.end(), [&](item t1, item t2) {
    return t1.a < t2.a;
});

相关问题