C++ examples for STL:deque
Use subscript to add value to deque
#include <iostream> #include <deque> using namespace std; void show(const char *msg, deque<int> q); int main() {//from w ww. j a va 2 s. c om //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; show("Contents of dq: ", dq); 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"; }