📜  C++中的sort_heap函数

📅  最后修改于: 2021-05-30 12:06:14             🧑  作者: Mango

sort_heap()是一种STL算法,其在开始和结束所指定的范围内对堆进行排序。将堆范围[开始,结束]中的元素按升序排序。

第二种形式允许您指定一个比较函数,该函数确定何时一个元素小于另一个元素。
在标头中定义

它有两个版本,定义如下:
1.使用“ <”比较元素:
句法:

template 
void sort_heap(RandIter start, RandIter end);
start, end :     the range of elements to sort
Return Value:  Since, return type is void, so it doesnot return any value. 

执行

template
void sort_heap( RandIter start, RandIter end );
{
    while (start != end)
        std::pop_heap(start, end--);
}

2.通过使用预定义函数进行比较:
句法:

template 
void sort_heap(RandIter start, RandIter end, Comp cmpfn);
start, end :    the range of elements to sort
comp:   comparison function object (i.e. an object that satisfies the requirements of Compare) 
which returns ?true if the first argument is less than the second.
Return Value : Since, its return type is void, so it doesnot return any value. 

执行

template
void sort_heap( RandIter start, RandIter end, Comp cmpfn );
{
    while (start != end)
        std::pop_heap(start, end--, cmpfn);
}
// CPP program to illustrate
// std::sort_heap
#include 
#include 
#include 
using namespace std;
int main()
{
    vector v = {8, 6, 2, 1, 5, 10}; 
   
    make_heap(v.begin(), v.end());
   
    cout << "heap:   ";
    for (const auto &i : v) {
     cout << i << ' ';
    }   
   
    sort_heap(v.begin(), v.end());
   
    std::cout <

输出:

heap: 10 6 8 1 5 2 
now sorted: 1 2 5 6 8 10 

另一个例子 :

// CPP program to illustrate
// std::sort_heap
#include 
#include 
#include 
#include 
  
int main( ) {
   using namespace std;
   vector  vt1, vt2;
   vector ::iterator Itera1, Itera2;
  
   int i;
   for ( i = 1 ; i <=5 ; i++ )
      vt1.push_back( i );
  
   random_shuffle( vt1.begin( ), vt1.end( ) );
  
   cout << "vector vt1 is ( " ;
   for ( Itera1 = vt1.begin( ) ; Itera1 != vt1.end( ) ; Itera1++ )
      cout << *Itera1 << " ";
   cout << ")" << endl;
  
   sort_heap (vt1.begin( ), vt1.end( ) );
   cout << "heap vt1 sorted range: ( " ;
   for ( Itera1 = vt1.begin( ) ; Itera1 != vt1.end( ) ; Itera1++ )
      cout << *Itera1 << " ";
   cout << ")" << endl;
}
    

输出:

vector vt1 is ( 5 4 2 3 1 )
heap vt1 sorted range: ( 1 2 3 4 5 )
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”