
最小堆
文章平均质量分 81
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 23. Merge k Sorted Lists(K路合并)
原题网址:https://leetcode.com/problems/merge-k-sorted-lists/Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.方法:使用最小堆维护当前最小值。/** * Definition fo原创 2016-05-19 07:27:17 · 866 阅读 · 0 评论 -
HackRank Cut the sticks
原题网址:https://www.hackerrank.com/challenges/cut-the-sticksYou are given sticks, where the length of each stick is a positive integer. A cut operation is performed on the sticks such that a原创 2016-06-24 06:56:05 · 891 阅读 · 0 评论 -
LeetCode 370. Range Addition
原题网址:https://leetcode.com/problems/range-addition/Assume you have an array of length n initialized with all 0's and are given k update operations.Each operation is represented as a triplet:原创 2016-06-30 02:52:03 · 3647 阅读 · 0 评论 -
LeetCode 295. Find Median from Data Stream(数据流中位数)
原题网址:https://leetcode.com/problems/find-median-from-data-stream/Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is原创 2016-04-16 11:09:22 · 1165 阅读 · 0 评论 -
LeetCode 313. Super Ugly Number(超级丑的数字)
原题网址:https://leetcode.com/problems/super-ugly-number/Write a program to find the nth super ugly number.Super ugly numbers are positive numbers whose all prime factors are in the given prime原创 2016-04-22 01:41:57 · 1551 阅读 · 0 评论 -
452. Minimum Number of Arrows to Burst Balloons
原题网址:https://leetcode.com/problems/minimum-number-of-arrows-to-burst-balloons/There are a number of spherical balloons spread in two-dimensional space. For each balloon, provided input is the st原创 2016-12-02 02:33:50 · 608 阅读 · 0 评论