扩展阅读
当前位置: 编程语言>c/c++
C++ Double Ended Queues 成员 resize():change the size of the dequeue
发布时间:2014-1-19
本文导语: C++ Double Ended Queues 成员 resize():change the size of the dequeue
resize
syntax:
void resize( size_type num, type val );
the resize() function changes the size of the double-ended queue to num, padding
any added entries with elements equal to val.