Push an element onto the front of deque using push_front. - C++ STL

C++ examples for STL:deque

Description

Push an element onto the front of deque using push_front.

Demo Code

#include <iostream>
#include <deque>
using namespace std;
void show(const char *msg, deque<int> q);
int main() {//  w w w  .  ja  va 2 s.co 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;
   // Push an element onto the front of dq.
   dq.push_front(-31416);
   show("dq after call to push_front(): ", 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