Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

STL의 C++에서 deque_insert()

<시간/>

C++ STL에서 Deque insert() 함수의 기능을 보여주는 작업이 주어집니다.

데크가 무엇인가요?

Deque는 양쪽 끝에서 확장 및 축소 기능을 제공하는 시퀀스 컨테이너인 Double Ended Queues입니다. 큐 데이터 구조는 사용자가 END에서만 데이터를 삽입하고 FRONT에서 데이터를 삭제할 수 있도록 합니다. 사람이 END에서만 대기열에 삽입될 수 있고 FRONT에 서 있는 사람이 가장 먼저 제거되는 반면 Double Ended 대기열에서는 데이터의 삽입 및 삭제가 양쪽에서 모두 가능한 버스 정류장의 대기열을 비유해 보겠습니다. 끝.

삽입( )이란 무엇입니까

deque insert( ) 함수는 deque에 요소를 삽입하는 데 사용됩니다.

  • 지정된 위치에 요소를 삽입할 때 사용하는 함수입니다.

  • 이 함수는 또한 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 - 삽입할 요소의 수를 지정합니다.

  • first, last – 삽입할 요소의 범위를 지정하는 반복자를 지정합니다.

반환 가치

새로 삽입된 요소의 첫 번째를 가리키는 반복자를 반환합니다.

예시

입력 데크 - 1 2 3 4 5

출력 새 데크 − 1 1 2 3 4 5

입력 데크 - 11 12 13 14 15

출력 새 데크 − 11 12 12 12 13 14 15

접근법을 따를 수 있음

  • 먼저 deque를 선언합니다.

  • 그런 다음 데크를 인쇄합니다.

  • 그런 다음 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