
排序
文章平均质量分 71
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 449. Serialize and Deserialize BST
原题网址:https://leetcode.com/problems/serialize-and-deserialize-bst/Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file原创 2017-01-04 06:39:45 · 885 阅读 · 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 332. Reconstruct Itinerary(重构行程)
原题网址:https://leetcode.com/problems/reconstruct-itinerary/Given a list of airline tickets represented by pairs of departure and arrival airports [from, to], reconstruct the itinerary in order.原创 2016-04-29 08:06:51 · 1668 阅读 · 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 324. Wiggle Sort II(摇摆排序)
原题网址:https://leetcode.com/problems/wiggle-sort-ii/Given an unsorted array nums, reorder it such that nums[0] nums[2] .Example:(1) Given nums = [1, 5, 1, 1, 6, 4], one possible answer is原创 2016-06-05 00:58:45 · 1480 阅读 · 0 评论 -
LeetCode 90. Subsets II(子集)
原题网址:https://leetcode.com/problems/subsets-ii/Given a collection of integers that might contain duplicates, nums, return all possible subsets.Note:Elements in a subset must be in non-d原创 2016-05-23 00:34:52 · 596 阅读 · 0 评论 -
LeetCode 88. Merge Sorted Array(合并有序数组)
原题网址:https://leetcode.com/problems/merge-sorted-array/Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.Note:You may assume that nums1 has enough原创 2016-05-23 00:34:29 · 371 阅读 · 0 评论 -
LeetCode 86. Partition List(链表分区)
原题网址:https://leetcode.com/problems/partition-list/Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should pres原创 2016-05-23 00:34:24 · 536 阅读 · 0 评论 -
LeetCode 81. Search in Rotated Sorted Array II(搜索旋转的数组)
原题网址:https://leetcode.com/problems/search-in-rotated-sorted-array-ii/Follow up for "Search in Rotated Sorted Array":What if duplicates are allowed?Would this affect the run-time complexity原创 2016-05-22 05:30:00 · 414 阅读 · 0 评论 -
LeetCode 164. Maximum Gap(最大空隙)
原题网址:https://leetcode.com/problems/maximum-gap/Given an unsorted array, find the maximum difference between the successive elements in its sorted form.Try to solve it in linear time/space.原创 2016-05-25 01:40:27 · 697 阅读 · 0 评论 -
LeetCode 275. H-Index II(文献)
原题网址:https://leetcode.com/problems/h-index-ii/Follow up for H-Index: What if the citations array is sorted in ascending order? Could you optimize your algorithm?Hint:Expected runtime c原创 2016-04-13 12:14:37 · 555 阅读 · 0 评论 -
462. Minimum Moves to Equal Array Elements II
原题网址:https://leetcode.com/problems/minimum-moves-to-equal-array-elements-ii/Given a non-empty integer array, find the minimum number of moves required to make all array elements equal, where a m原创 2016-11-27 03:27:16 · 623 阅读 · 0 评论 -
LeetCode 475. Heaters
原题网址:https://leetcode.com/problems/heaters/Winter is coming! Your first job during the contest is to design a standard heater with fixed warm radius to warm all the houses.Now, you are given原创 2016-12-12 04:00:28 · 2488 阅读 · 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 评论 -
LeetCode 455. Assign Cookies
原题网址:https://leetcode.com/problems/assign-cookies/Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child i h原创 2016-11-17 04:25:32 · 537 阅读 · 0 评论 -
LeetCode 368. Largest Divisible Subset
原题网址:https://leetcode.com/problems/largest-divisible-subset/Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfie原创 2016-06-29 05:05:01 · 730 阅读 · 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 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 评论 -
LeetCode 358. Rearrange String k Distance Apart(字符间隔)
原题网址:https://leetcode.com/problems/rearrange-string-k-distance-apart/Given a non-empty string str and an integer k, rearrange the string such that the same characters are at least distance k fro原创 2016-06-15 03:27:55 · 5851 阅读 · 0 评论 -
LeetCode 80. Remove Duplicates from Sorted Array II(删除重复)
原题网址:https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/Follow up for "Remove Duplicates":What if duplicates are allowed at most twice?For example,Given sorted array nu原创 2016-05-22 05:27:10 · 338 阅读 · 0 评论 -
LeetCode 74. Search a 2D Matrix(搜索矩阵)
原题网址:https://leetcode.com/problems/search-a-2d-matrix/Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in each原创 2016-05-22 05:19:08 · 619 阅读 · 0 评论 -
LeetCode 75. Sort Colors(颜色排序)
原题网址:https://leetcode.com/problems/sort-colors/Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order re原创 2016-05-22 05:19:20 · 608 阅读 · 0 评论 -
LeetCode 148. Sort List(链表排序)
原题网址:https://leetcode.com/problems/sort-list/Sort a linked list in O(n log n) time using constant space complexity.方法一:分区排序,以第一个元素为参照,分为大中小。/** * Definition for singly-linked list. * publi原创 2016-05-26 01:18:10 · 871 阅读 · 0 评论 -
LeetCode 324. Wiggle Sort II(摇摆排序)
原题网址:https://leetcode.com/problems/wiggle-sort-ii/Given an unsorted array nums, reorder it such that nums[0] nums[2] .Example:(1) Given nums = [1, 5, 1, 1, 6, 4], one possible answer is原创 2016-04-26 04:48:49 · 2394 阅读 · 0 评论 -
LeetCode 147. Insertion Sort List(插入有序链表)
原题网址:https://leetcode.com/problems/insertion-sort-list/Sort a linked list using insertion sort.方法:/** * Definition for singly-linked list. * public class ListNode { * int val; * Li原创 2016-05-26 01:20:22 · 768 阅读 · 0 评论 -
LeetCode 163. Missing Ranges(缺失区间)
原题网址:https://leetcode.com/problems/missing-ranges/Given a sorted integer array where the range of elements are [lower, upper] inclusive, return its missing ranges.For example, given [0, 1, 3原创 2016-05-25 01:40:33 · 2346 阅读 · 0 评论 -
LeetCode 167. Two Sum II - Input array is sorted(两数和)
原题网址:https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific tar原创 2016-05-25 01:39:48 · 631 阅读 · 0 评论 -
LeetCode 350. Intersection of Two Arrays II(数组交集)
原题网址:https://leetcode.com/problems/intersection-of-two-arrays-ii/Given two arrays, write a function to compute their intersection.Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], retu原创 2016-05-25 01:35:00 · 1380 阅读 · 0 评论 -
LeetCode 259. 3Sum Smaller(三数值和)
原题网址:https://leetcode.com/problems/3sum-smaller/Given an array of n integers nums and a target, find the number of index triplets i, j, k with 0 that satisfy the condition nums[i] + nums[j]原创 2016-04-09 08:31:17 · 1629 阅读 · 1 评论 -
LeetCode 108. Convert Sorted Array to Binary Search Tree(数组转换为二叉搜索树)
原题网址:https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/Given an array where elements are sorted in ascending order, convert it to a height balanced BST.方法:递归,自顶向下。/** *原创 2016-05-24 00:12:53 · 505 阅读 · 0 评论 -
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 228. Summary Ranges(归纳区间)
原题网址:https://leetcode.com/problems/summary-ranges/Given a sorted integer array without duplicates, return the summary of its ranges.For example, given [0,1,2,4,5,7], return ["0->2","4->5","7原创 2016-04-05 05:02:40 · 817 阅读 · 0 评论 -
LeetCode 56. Merge Intervals(合并区间)
原题网址:https://leetcode.com/problems/merge-intervals/Given a collection of intervals, merge all overlapping intervals.For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,1原创 2016-05-21 07:14:22 · 664 阅读 · 0 评论 -
LeetCode 4. Median of Two Sorted Arrays(两个有序数组的中位数)
原题网址:https://leetcode.com/problems/median-of-two-sorted-arrays/There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run t原创 2016-05-01 15:39:34 · 1009 阅读 · 0 评论 -
LeetCode 40. Combination Sum II(组合求和)
原题网址:https://leetcode.com/problems/combination-sum-ii/Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to原创 2016-05-20 10:41:06 · 1500 阅读 · 0 评论 -
LeetCode 35. Search Insert Position(搜索插入点)
原题网址:https://leetcode.com/problems/search-insert-position/Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were原创 2016-05-20 10:37:23 · 380 阅读 · 0 评论 -
LeetCode 34. Search for a Range(搜索范围)
原题网址:https://leetcode.com/problems/search-for-a-range/Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must原创 2016-05-20 10:36:48 · 499 阅读 · 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 16. 3Sum Closest(最接近的和)
原题网址:https://leetcode.com/problems/3sum-closest/Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integ原创 2016-05-19 06:09:48 · 458 阅读 · 0 评论 -
LeetCode 229. Majority Element II(众数II)
原题网址:https://leetcode.com/problems/majority-element-ii/Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times. The algorithm should run in linear time and in O(1原创 2016-04-05 06:28:28 · 1802 阅读 · 0 评论