扩展阅读
当前位置: 编程语言>c/c++
C++ Double Ended Queues 成员 push_front():add an element to the front of the dequeue
发布时间:2014-1-19
本文导语: C++ Double Ended Queues 成员 push_front():add an element to the front of the dequeue
push_front
syntax:
void push_front( const type &val );
the function push_front() adds val to the front of the double-ended queue.