1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#include <vector> #include <list> #include <cstdio> using namespace std; int () { queue<int, list<int>> a; queue<int> b; int i; for (i = 0; i < 10; i++) { a.push(i); b.push(i); } printf("%d %dn", a.size(), b.size()); printf("%d %dn", a.front(), a.back()); printf("%d %dn", b.front(), b.back()); while (!a.empty()) { printf("%d ", a.front()); a.pop(); } putchar('n'); while (!b.empty()) { printf("%d ", b.front()); b.pop(); } putchar('n'); return 0; }
|