STL的个人总结
algorithm库函数1.reverse 翻转(a.begin(),a.end()) reverse(a,a+n)
举个栗子
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
vector<int>a({1,2,3,4,5});
reverse(a.begin(),a.end());
for(auto x:a) cout << x <<' ';
return 0;
}
2.unique 去重 需要保证相同元素在一起才行,个人建议先sort m=unique(begin,end)-begin //m为不重复的个数或者a.erase(unique(begin,end),end)举个栗子
#include <iostream>
#include <algorithm>
#include <vector>
usi ...