次の方法で共有


priority_queue::top

priority_queue 上の最大要素への const 参照を返します。

const_reference top( ) const;
reference top( );

戻り値

特徴 関数が最も大きな要素への参照、priority_queue オブジェクト。

解説

priority_queue はメンバー関数を適用する空にすることはできません。

使用例

// pqueue_top.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;
}
  

必要条件

ヘッダー: <キュー>

名前空間: std

参照

関連項目

priority_queue クラス

priority_queue 関数

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