资 源 简 介
Design and implement the class Deque to conform to std::deque. A deque is very similar to a vector except that the elements are stored in the center of a two-dimensional array instead of at the beginning a one-dimensional array. Also, the outer array is circular. We must not use new, delete, malloc() or free().