STLのC++のdeque_insert()
C ++STLでDequeinsert()関数の機能を表示するタスクが与えられています
Dequeとは何ですか?
Dequeは、両端で拡張と縮小の機能を提供するシーケンスコンテナである両端キューです。キューデータ構造により、ユーザーはENDでのみデータを挿入し、FRONTからデータを削除できます。バス停のキューを例にとると、ENDからのみキューに挿入でき、FRONTに立っている人が最初に削除されますが、両端キューではデータの挿入と削除が両方で可能です。終わり。
insert()とは
deque insert()関数は、要素をdequeに挿入するために使用されます。
-
この関数は、指定された位置に要素を挿入するために使用されます。
-
この関数は、要素のn個を両端キューに挿入するためにも使用されます。
-
指定した範囲の要素を挿入することも使用します。
構文
deque_name.insert (iterator position, const_value_type& value) deque_name.insert (iterator position, size_type n, const_value_type& value) deque_name.insert (iterator position, iterator first, iterator last)
パラメータ
-
値–挿入する新しい要素を指定します。
-
n –挿入する要素の数を指定します。
-
最初、最後–挿入する要素の範囲を指定するイテレータを指定します。
戻り値
新しく挿入された要素の最初を指すイテレータを返します。
例
入力 Deque − 1 2 3 4 5
出力 New Deque − 1 1 2 3 4 5
入力 Deque − 11 12 13 14 15
出力 New Deque − 11 12 12 12 13 14 15
アプローチに従うことができます
-
まず、両端キューを宣言します。
-
次に、両端キューを印刷します。
-
次に、insert()関数を宣言します。
上記のアプローチを使用することで、新しい要素を挿入できます。
例
// C++ code to demonstrate the working of deque insert( ) function #include<iostream.h> #include<deque.h> Using namespace std; int main ( ){ // declaring the deque Deque<int> deque = { 55, 84, 38, 66, 67 }; // print the deque cout<< “ Deque: “; for( auto x = deque.begin( ); x != deque.end( ); ++x) cout<< *x << “ “; // declaring insert( ) function x = deque.insert(x, 22); // printing deque after inserting new element cout<< “ New Deque:”; for( x = deque.begin( ); x != deque.end( ); ++x) cout<< “ “ <<*x; return 0; }
出力
上記のコードを実行すると、次の出力が生成されます
Input - Deque: 55 84 38 66 67 Output - New Deque: 22 55 84 38 66 67
例
// C++ code to demonstrate the working of deque insert( ) function #include<iostream.h> #include<deque.h> Using namespace std; int main( ){ deque<char> deque ={ ‘B’ , ‘L’ , ‘D’ }; cout<< “ Deque: “; for( auto x = deque.begin( ); x != deque.end( ); ++x) cout<< *x << “ “; deque.insert(x + 1, 2, ‘O’); // printing deque after inserting new element cout<< “ New Deque:”; for( auto x = deque.begin( ); x != deque.end( ); ++x) cout<< “ “ <<*x; return 0; }
出力
上記のコードを実行すると、次の出力が生成されます
Input – Deque: B L D Output – New Deque: B L O O D
例
// C++ code to demonstrate the working of deque insert( ) function #include<iostream.h> #include<deque.h> #include<vector.h> Using namespace std; int main( ){ deque<int> deque ={ 65, 54, 32, 98, 55 }; cout<< “ Deque: “; for( auto x = deque.begin( ); x != deque.end( ); ++x) cout<< *x << “ “; vector<int7gt; v(3, 19); deque.insert(x, v.begin( ), v.end( ) ); // printing deque after inserting new element cout<< “ New Deque:”; for( auto x = deque.begin( ); x != deque.end( ); ++x) cout<< “ “ <<*x; return 0; }
出力
上記のコードを実行すると、次の出力が生成されます
Input – Deque: 65 54 32 98 55 Output – New Deque: 65 19 19 19 65 54 32 98 55
-
C ++ STLのマルチセットinsert()関数
C ++ STLのマルチセットinsert()関数は、マルチセットコンテナ内の要素を、あるマルチセットから別のマルチセットのある位置から別の位置に挿入します。 使用されている関数のリスト: ms.size()=マルチセットのサイズを返します。 ms.insert()=マルチセットに要素を挿入するために使用されます。 サンプルコード #include <iostream> #include <set> #include <string> #include <cstdlib> using namespace std; int main()
-
C++STLでの配置と挿入
emplace操作は、オブジェクトの不要なコピーを回避し、挿入操作よりも効率的に挿入を行います。挿入操作はオブジェクトへの参照を取ります。 アルゴリズム Begin Declare set. Use emplace() to insert pair. Use insert() to insert pair by using emplace(). Print the set. End サンプルコード #include<bits/stdc++.h> using namespace std; int main() { set<pai