C++自带sort函数对vector容器元素进行排序

1.包含头文件 #include,然后using namespace std;
2.假如你定义的vector变量为vector num,则如下:
  sort(num.begin(), num.end(), sortFun);
  然后如果是基本类型假如是int,第三个参数可以使用系统自带的less()或者greater(),假如是自定义类型话或者复杂类型就需自己定义比较规则函数sortFun,以下以opencv中的Point2d类型举例:

#include
#include
#include
#include
using namespace std;
using namespace cv;
vector po;

//自定义排序函数  
bool sortFun(const cv::Point2d &p1, const cv::Point2d &p2)
{
	return p1.x < p2.x;//升序排列  
}

int main()
{
	Point2d p1(2, 4), p2(4, 3), p3(1, 7), p4(0,4);
	po.push_back(p1);
	po.push_back(p2);
	po.push_back(p3);
	po.push_back(p4);
	cout << "排序前: ";
	for (auto elem : po)
		cout << elem << " ";

	sort(po.begin(), po.end(), sortFun);
	cout << endl << "排序后: " ;
	for (auto elem : po)
		cout << elem << " ";
	
	cout << endl;
	system("pause");
	return 0;
}

运行结果:

 

你可能感兴趣的:(C++自带sort函数对vector容器元素进行排序)