C++STL queue
摘要:
queue队列 先进先出 queue<int> q1; q1.push();//插入元素 q1.front();//求队头元素 q1.pop();//删除队头元素 q1.empty();//判断队列是否为空 元素全部抛出队列 while(!q1.empty()) { int tmp = q1.fro 阅读全文
posted @ 2018-09-12 22:09 名侦探江户川 阅读(94) 评论(0) 推荐(0) 编辑