2015年5月17日

STL之优先级队列priority_queue

摘要: 摘要: priority_queue,自适应容器(即容器适配器):不能由list来组建; 最大值优先级队列(最大值始终在对首,push进去时候) 最小值优先级队列; 优先级队列适配器 STL priority_queue priority_queue > pg; priority_que... 阅读全文

posted @ 2015-05-17 23:07 阳台 阅读(297) 评论(0) 推荐(0) 编辑

ST

摘要: FG 阅读全文

posted @ 2015-05-17 23:07 阳台 阅读(124) 评论(0) 推荐(0) 编辑

STL之Queue(Q)

摘要: STL的Queue(数据结构中的队列): 特点:FIFO 先进先出; 自适应容器(即容器适配器) 栈适配器STL queue STL中实现的Queue: 用list来实现queue; queue > q; 用deque来实现queue; queue > q; ... 阅读全文

posted @ 2015-05-17 21:43 阳台 阅读(523) 评论(0) 推荐(0) 编辑

导航