C++标准库模板
queue的成员函数:
1 size() // 返回队列的元素数 2 front() // 返回队头元素 3 pop() // 从队列头部取出并删除元素 4 push(x) // 从队尾添加元素x 5 empty() // 判定队列是否为空