Insertion et affichage du contenu d’un ‘deque’

Author:

 deque
Download

#include 
#include 
using namespace std;

int main()
   {
   deque deq;

   deq.push_back(30);
   deq.push_back(40);
   deq.push_back(50);
   deq.push_front(20);
   deq.push_front(10);

   deq[2] = 33;                    

   for(int j=0; j
    

Leave a Reply

Your email address will not be published. Required fields are marked *