由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教一道C++面试题
相关主题
弱问C++用heap的题能用multiset吗priority_queue C++ implementation
面试用C++, heap 怎么办?弱弱的问个C++用priority_queue定义min heap的问题
一道很难的面试题C++里如何将一个vector转换成priority_queue
一道面试题。问个题。
找个码工就这么难?一个facebook面试题
当数据很大时,如果做BFS、DFS?C++ linux 线程面试题
到底什么是priority queue啊?LI面试题: 实现Blocking Queue
interview时要用stack,queue之类的东西可以不定义直接用吗请教MinHeap用STL实现
相关话题的讨论汇总
话题: heap话题: c++话题: queue话题: any话题: priority
进入JobHunting版参与讨论
1 (共1页)
i****t
发帖数: 113
1
用一种有效的数据结构(HEAP)实现优先级队列(PRIORITY QUEUE)。多谢!
S**I
发帖数: 15689
2
binary heap; read the source code of priority_queue of any standard C++
implementation.

【在 i****t 的大作中提到】
: 用一种有效的数据结构(HEAP)实现优先级队列(PRIORITY QUEUE)。多谢!
i****t
发帖数: 113
3
Any details? For example, how to implement insert() and removeMax() of
pQueue class with heap? Thanks

【在 S**I 的大作中提到】
: binary heap; read the source code of priority_queue of any standard C++
: implementation.

q****x
发帖数: 7404
4
clrs.

【在 i****t 的大作中提到】
: Any details? For example, how to implement insert() and removeMax() of
: pQueue class with heap? Thanks

c****p
发帖数: 6474
5
这不就是最大堆么

【在 i****t 的大作中提到】
: 用一种有效的数据结构(HEAP)实现优先级队列(PRIORITY QUEUE)。多谢!
c****p
发帖数: 6474
6
去看max heap的基本操作。。

【在 i****t 的大作中提到】
: Any details? For example, how to implement insert() and removeMax() of
: pQueue class with heap? Thanks

q****x
发帖数: 7404
7
why max heap? min heap is similar.

【在 c****p 的大作中提到】
: 这不就是最大堆么
1 (共1页)
进入JobHunting版参与讨论
相关主题
请教MinHeap用STL实现找个码工就这么难?
贡献两道google面试题当数据很大时,如果做BFS、DFS?
求教一道经典面题的解法到底什么是priority queue啊?
Facebook Interview Questionsinterview时要用stack,queue之类的东西可以不定义直接用吗
弱问C++用heap的题能用multiset吗priority_queue C++ implementation
面试用C++, heap 怎么办?弱弱的问个C++用priority_queue定义min heap的问题
一道很难的面试题C++里如何将一个vector转换成priority_queue
一道面试题。问个题。
相关话题的讨论汇总
话题: heap话题: c++话题: queue话题: any话题: priority