Add value to the end of deque - C++ STL

C++ examples for STL:deque

Description

Add value to the end of deque

Demo Code

#include <iostream>
#include <deque>
using namespace std;
void show(const char *msg, deque<int> q);
int main() {/*from  w ww  .java2 s  .  c o m*/
   //Declare a deque that has an initial capacity of 10.
   deque<int> dq(10);
   for(unsigned i=0; i < dq.size(); ++i)
      dq[i] = i*i;
   // Add elements to the end of dq.
   dq.push_back(100);
   dq.push_back(121);
   show("dq after pushing elements onto the end: ", dq);
   cout << endl;
   return 0;
}
// Display the contents of a deque<int>.
void show(const char *msg, deque<int> q) {
   cout << msg;
   for(unsigned i=0; i < q.size(); ++i)
      cout << q[i] << " ";
   cout << "\n";
}

Result


Related Tutorials