由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一道关于priorityqueue的面试题,谁能给个正确解答?
相关主题
到底什么是priority queue啊?给LeetCode推荐一道题Modified Minimum Path Sum
求一道题的解答One interview question (A)
Insert bounding boxk sorted array merge大家现场写一个heap?
amazon tel interviewleetcode 的 Insert Interval 就是过不了大的
BST的insertion请教各位大牛一个K-way merge 的问题
问三道题这里还有比我更弱的么?
careercup书上那个maintain median value的题刚面的,发一个google新题
what's the difference of back_inserter and inserter in c++F家一面题,攒人品
相关话题的讨论汇总
话题: priority话题: public话题: returns话题: queueitem
进入JobHunting版参与讨论
1 (共1页)
d**********8
发帖数: 129
1
Given the following interfaces,
1. public interface QueueItem {
2.
3. /**
4. * Returns the priority of this item. The priority is guaranteed to be
5. * between 0 and 99, where 0 is lowest and 99 is highest priority.
6. */
7. public int priority();
8. }
9.
10. public interface PriorityQueue {
11.
12. /**
13. * Inserts a queue item into the priority queue.
14. */
15. public void insert(QueueItem q);
16.
17. /**
18. * Returns the item with the highest priority.
19. */
1 (共1页)
进入JobHunting版参与讨论
相关主题
F家一面题,攒人品BST的insertion
亚麻OO design 出租车系统讨论问三道题
leetcode 上的k way mergecareercup书上那个maintain median value的题
发个amazon online test 的题what's the difference of back_inserter and inserter in c++
到底什么是priority queue啊?给LeetCode推荐一道题Modified Minimum Path Sum
求一道题的解答One interview question (A)
Insert bounding boxk sorted array merge大家现场写一个heap?
amazon tel interviewleetcode 的 Insert Interval 就是过不了大的
相关话题的讨论汇总
话题: priority话题: public话题: returns话题: queueitem