C++语法——vector

under C++  tag     Published on April 30th , 2020 at 04:50 am

前言

标准库vector类型是C++中使用较多的一种类模板,vector类型相当于一种动态的容器。

vector排序

1.包含头文件 #include<algorithm>,然后using namespace std;
2.假如你定义的vector变量为vector<Type> num,则如下:
sort(num.begin(), num.end(), sortFun);
然后如果是基本类型假如是int,第三个参数可以使用系统自带的less<int>()或者greater<int>()


本文由simyng创作, 采用知识共享署名4.0 国际许可协议进行许可,转载前请务必署名
  文章最后更新时间为:April 29th , 2020 at 08:50 pm