Bootstrap

C++ 实现自定义排序

C++ 实现自定义排序规则

C++ 的 STL 中内置了 sort 函数,可以自定义规则进行排序

// 示例
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
   
	vector<int> test{
    2,0,1,5,3,-35,32,-36,67,-15 };

	for (const auto& val : test) {
   
		cout << val << " ";
	}
	cout << endl;

	sort(test.begin(), test.end(), [](const auto& a, const auto& b)->bool {
    r
;