I have a C++ code for deque
which declares the deque
and I do not understand what it means?
deque<int> pile[7];
The above deque used is from standard library implementation of C++ I did an extensive research on it but no body has used it this way. I don't know if this is
- "deque of deques" or
- "deque of arrays" or
- "arrays of deque"
Kindly please explain?