次の方法で共有


priority_queue::push

operator< から要素の優先順位に基づいて優先順位キューに要素を追加します。

void push(
   const Type& _Val
);

パラメーター

  • _Val
    要素は priority_queue の先頭に追加しました。

解説

priority_queue の上は最大の要素によって占有されるコンテナーの位置です。

使用例

// pqueue_push.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>

int main( )
{
   using namespace std;
   priority_queue<int> q1;

   q1.push( 10 );
   q1.push( 30 );
   q1.push( 20 );

   priority_queue<int>::size_type i;
   i = q1.size( );
   cout << "The priority_queue length is " << i << "." << endl;

   const int& ii = q1.top( );
   cout << "The element at the top of the priority_queue is "
        << ii << "." << endl;
}
  
  

必要条件

ヘッダー: <queue>

名前空間: std

参照

関連項目

priority_queue Class

priority_queue Functions

標準テンプレート ライブラリ