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

STL의 C++에서 deque_crend

<시간/>

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

데크가 무엇인가요?

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

deque crend() 함수는 역 끝으로 간주되는 deque의 첫 번째 요소 앞의 요소를 가리키는 const_reverse_iterator를 반환합니다.

구문

Deque_name.crend( )

반환 가치

deque_crend() 함수는 deque의 const_reverse_iterator를 반환합니다.

예시

입력 데크 − 5 4 3 2 1

출력 역순으로 데크 − 1 2 3 4 5

입력 데크 - 75 45 33 77 12

출력 역순으로 데크 − 12 77 33 45 75

접근법을 따를 수 있음

  • 먼저 deque를 선언합니다.

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

  • 그런 다음 crend( ) 함수를 사용합니다.

위의 접근 방식을 사용하여 deque를 역순으로 인쇄할 수 있습니다.

// C++ code to demonstrate the working of deque crend( ) function
#include<iostream.h>
#include<deque.h>
Using namespace std;
int main ( ){
   // declaring the deque
   Deque<int> deque = { 5, 4, 3, 2, 1 };
   // print the deque
   cout<< “ Deque: “;
   for( auto x = deque.begin( ); x != deque.end( ); ++x)
      cout<< *x << “ “;
   // printing deque in reverse order
   cout<< “ Deque in reverse order:”;
   for( auto x = deque.crend( ) - 1; x >= deque.begin( ); --x)
      cout<< “ “ <<*x;
   return 0;
}

출력

위의 코드를 실행하면 다음 출력이 생성됩니다.

Input - Deque: 5 4 3 2 1
Output - Deque in reverse order: 1 2 3 4 5

// C++ code to demonstrate the working of crend( ) function
#include<iostream.h>
#include<deque.h>
Using namespace std;
int main( ){
   deque<char> deque ={ ‘L’ , ‘A’ , ‘P’ , ‘T’ , ‘O’ , ‘P’ };
   cout<< “ Deque: “;
   for( auto x = deque.begin( ); x != deque.end( ); ++x)
      cout<< *x << “ “;
   // printing deque in reverse order
   cout<< “ Deque in reverse order:”;
   for( auto x = deque.crend( ) - 1; x >= deque.begin( ); --x)
      cout<< “ “ <<*x;
   return 0;
}

출력

위의 코드를 실행하면 다음 출력이 생성됩니다.

Input – Deque: L A P T O P
Output – Deque in reverse order: P O T P A L