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