
第K个
文章平均质量分 76
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 272. Closest Binary Search Tree Value II(二叉搜索树查找)
原题网址:https://leetcode.com/problems/closest-binary-search-tree-value-ii/ Given a non-empty binary search tree and a target value, find k values in the BST that are closest to the target. Note:原创 2016-04-13 06:15:51 · 2063 阅读 · 0 评论 -
LeetCode 274. H-Index(文献)
原题网址:https://leetcode.com/problems/h-index/ Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher's h-index. Accordi原创 2016-04-13 10:58:01 · 714 阅读 · 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 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 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 评论 -
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 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 264. Ugly Number II(丑数字)
原题网址:https://leetcode.com/problems/ugly-number-ii/ Write a program to find the n-th ugly number. Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 1, 2原创 2016-04-10 14:12:31 · 890 阅读 · 0 评论