排序操作
函数原型:
代码语言:javascript复制#include<iostream>
using namespace std;
#include<deque>
#include<algorithm> //包含算法头文件
//deque的排序操作
void p(const deque<int>& d)
{
for (deque<int>::const_iterator it = d.begin(); it != d.end(); it )
{
cout << *it << " ";
}
cout << endl;
}
void realApply()
{
deque<int>d1;
d1.push_back(0);
d1.push_front(2);
d1.push_front(5);
cout << "未排序前: ";
p(d1);
//排序算法sort 需要包含头文件algorithm
//默认排序规则,从小到大,升序
//对于支持随机访问的迭代器的容器,都可以利用sort算法直接对其进行排序
//vector容器也可以利用sort进行排序
sort(d1.begin(), d1.end());
cout << "排序后: ";
p(d1);
}
int main()
{
realApply();
system("pause");
return 0;
}