
堆
文章平均质量分 81
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 215. Kth Largest Element in an Array(第K大元素)
原题网址:https://leetcode.com/problems/kth-largest-element-in-an-array/Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth dis原创 2016-05-06 03:34:55 · 467 阅读 · 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 评论 -
LeetCode 373. Find K Pairs with Smallest Sums
原题网址:https://leetcode.com/problems/find-k-pairs-with-smallest-sums/You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k.Define a pair (u,v) which consists原创 2016-07-14 00:51:28 · 800 阅读 · 0 评论 -
LeetCode 188. Best Time to Buy and Sell Stock IV(股票买卖)
原题网址:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the m原创 2016-05-02 15:03:28 · 1990 阅读 · 0 评论 -
LeetCode 315. Count of Smaller Numbers After Self (逆序数对)
原题网址:https://leetcode.com/problems/count-of-smaller-numbers-after-self/You are given an integer array nums and you have to return a new counts array. The counts array has the property where coun原创 2016-04-22 13:21:32 · 7496 阅读 · 2 评论 -
LintCode Consistent Hashing(一致性哈希算法)
原题网址:http://www.lintcode.com/en/problem/consistent-hashing/一般的数据库进行horizontal shard的方法是指,把 id 对 数据库服务器总数 n 取模,然后来得到他在哪台机器上。这种方法的缺点是,当数据继续增加,我们需要增加数据库服务器,将 n 变为 n+1 时,几乎所有的数据都要移动,这就造成了不 consist原创 2016-06-23 05:16:18 · 2502 阅读 · 0 评论 -
LeetCode 316. Remove Duplicate Letters(删除重复字母)
原题网址:https://leetcode.com/problems/remove-duplicate-letters/Given a string which contains only lowercase letters, remove duplicate letters so that every letter appear once and only once. You mus原创 2016-04-23 05:51:58 · 2254 阅读 · 1 评论 -
LeetCode 239. Sliding Window Maximum(滑动窗口最大值)
原题网址:https://leetcode.com/problems/sliding-window-maximum/Given an array nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only原创 2016-04-06 12:53:10 · 5997 阅读 · 0 评论 -
LeetCode 218. The Skyline Problem(天际线)
原题网址:https://leetcode.com/problems/the-skyline-problem/A city's skyline is the outer contour of the silhouette formed by all the buildings in that city when viewed from a distance. Now suppose y原创 2016-05-06 07:03:27 · 1469 阅读 · 0 评论 -
LeetCode 355. Design Twitter(设计Twitter)
原题网址:https://leetcode.com/problems/design-twitter/Design a simplified version of Twitter where users can post tweets, follow/unfollow another user and is able to see the 10 most recent tweets in原创 2016-06-15 04:49:48 · 1007 阅读 · 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 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 评论 -
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 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 评论 -
LeetCode 221. Maximal Square(最大正方形)
原题网址:https://leetcode.com/problems/maximal-square/Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.For example, given the foll原创 2016-05-06 12:25:55 · 1565 阅读 · 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 评论