C++汇总

文章目录
10 sort/reverse、vector、数组、字符串、动态数组

10 sort/reverse、vector、数组、字符串、动态数组
1)string: https://blog.csdn.net/liitdar/article/details/80498634
#include
#include
#include
#include
using namespace std;

# define NUM 5

bool cmpy(cv::Point2d const& pt1, cv::Point2d const& pt2) //const& 直接引用,但不改变值
{
return pt2.x < pt1.x; //从大到小;<变成>,从大到小
}

int main()
{
/*
##

C++汇总最先出现在Python成神之路

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/12632.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>