C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

STLのC++のdeque_max_size()


C ++STLでdequemax_size()関数の機能を表示するタスクが与えられています。

Dequeとは何ですか?

Dequeは、両端で拡張と縮小の機能を提供するシーケンスコンテナである両端キューです。キューデータ構造により、ユーザーはENDでのみデータを挿入し、FRONTからデータを削除できます。バス停でのキューの例えを考えてみましょう。この場合、人はENDからのみキューに挿入でき、FRONTに立っている人が最初に削除されますが、両端キューでは、データの挿入と削除は両端で可能です。

deque max_size()関数とは何ですか?

この関数は、dequeが保持する要素の最大数を確認するために使用されます。

構文:dequename.max_size()

返品 −最大数を返します。 dequeが保持する要素の数。

Input Deque: 12 13 14 15 16
Output Maximum size: 4611686018427387903
Input Deque: F O R C E
Output Maximum size: 4611686018427387903

アプローチに従うことができます

  • まず、両端キューを宣言します。

  • 次に、両端キューを印刷します。

  • 次に、dequeの最大サイズを確認します。

上記のアプローチを使用することで、dequeの最大サイズを確認できます。

// C++ code to demonstrate the working of deque max_size( ) function
#include<iostream.h>
#include<deque.h>
Using namespace std;
int main ( ){
   // initializing the deque
   Deque<int> deque = { 11, 12, 13, 14, 15 };
   // print the deque
   cout<< “ Deque: “;
   for( auto x = deque.begin( ); x != deque.end( ); ++x)
      cout<< *x << “ “;
   cout<< “ The maximum size of deque: “<< deque.max_size( );
   return 0;
}

出力

上記のコードを実行すると、次の出力が生成されます

Input - Deque: 11 12 13 14 15
Output - The maximum size of deque: 461168601842738790

// C++ code to demonstrate the working of deque max_size( ) function
#include<iostream.h>
#include<deque.h>
Using namespace std;
int main( ){
   // initializing deque
   deque<int> deque ={ 14, 15, 16, 17, 18, 19, 20 };
   // print the deque
   cout<< “ Deque: “;
   for( auto x = deque.begin( ); x != deque.end( ); ++x)
      cout<< *x << “ “;
   cout<< “Maximum size of deque:” << deque.max_size( );
   return 0;
}

出力

上記のコードを実行すると、次の出力が生成されます。

Input: Deque:14 15 16 17 18 19 20
Output: Maximum size of deque: 4611686018427387903

  1. C ++ STL(3.5)でスタック

    C ++ STLでは、スタックはLIFO構造として実装されるコンテナーとして使用されます。 LIFOは後入れ先出しを意味します。 Stackは、本が上下に並べられた本の山と見なすことができ、最後に挿入された本が最初に削除されるため、LIFO構造と呼ばれます。 スタックに関連付けられている操作は- Top() -この関数は、スタックの最上位要素への参照を返します。 構文 --name_of_stack.top() パラメータ -パラメータなし 戻り値 -スタックコンテナの最上位要素への参照 Push() -この関数は、要素をスタックコンテナに挿入するために使用されま

  2. STLでDequeを実装するC++プログラム

    Double Ended Queueは、挿入および削除操作が両端(前面と背面)で実行されるキューデータ構造です。データは前部と後部の両方の位置に挿入でき、前部と後部の両方の位置から削除できます。 アルゴリズム Begin Declare deque vector and iterator. Take the input as per choice. Call the functions within switch operation: d.size() = Returns the size of queue. d.push_back() = It is used