博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ STL partial_sort
阅读量:5071 次
发布时间:2019-06-12

本文共 1083 字,大约阅读时间需要 3 分钟。

#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
----------------------------------
请按任意键继续. . .

 

转载于:https://www.cnblogs.com/herd/p/11012716.html

你可能感兴趣的文章