Deque C++ Tutorial

#include 
#include 
using namespace std;
void show(const char *msg, deque q);
int main() {
  deque dq(10);
  for(unsigned i=0; i < dq.size(); ++i) dq[i] = i*i;
  show("Contents of dq: ", dq);
  // Create an empty deque and then assign it a sequence that is the reverse of dq.
  deque dq3;
  dq3.assign(dq.rbegin(), dq.rend());
  show("dq3 contains the reverse of dq: ", dq3);
  cout << endl;
  return 0;
}
// Display the contents of a deque.
void show(const char *msg, deque q) {
  cout << msg;
  for(unsigned i=0; i < q.size(); ++i)
    cout << q[i] << " ";
  cout << "\n";
}