C++ STL partial_sort
Posted herd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ STL partial_sort相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <deque>
#include <algorithm>
#include <vector>
using namespace std;
int main()
deque<int> deq1;
deque<int>::iterator deq_iter1;
for (int k=0;k<15;k++)
deq1.push_back(rand());
for (deq_iter1 = deq1.begin();deq_iter1 != deq1.end();++deq_iter1)
cout << *deq_iter1 << " ";
cout << endl;
cout << "----------------------------------" << endl;
partial_sort(deq1.begin(), deq1.begin() + 5, deq1.end());
for (deq_iter1 = deq1.begin(); deq_iter1 != deq1.end(); ++deq_iter1)
cout << *deq_iter1 << " ";
cout << endl;
cout << "----------------------------------" << endl;
//random_shuffle(deq1.begin(), deq1.end());
system("pause");
return 0;
==========================================================
41 18467 6334 26500 19169 15724 11478 29358 26962 24464 5705 28145 23281 16827 9961
----------------------------------
41 5705 6334 9961 11478 26500 19169 29358 26962 24464 18467 28145 23281 16827 15724
----------------------------------
请按任意键继续. . .
以上是关于C++ STL partial_sort的主要内容,如果未能解决你的问题,请参考以下文章