
二分法查找
文章平均质量分 70
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 162. Find Peak Element(查找峰值)
原题网址:https://leetcode.com/problems/find-peak-element/A peak element is an element that is greater than its neighbors.Given an input array where num[i] ≠ num[i+1], find a peak element and ret原创 2016-05-25 01:40:48 · 2302 阅读 · 0 评论 -
LintCode Find Peak Element(查找峰值)
原题网址:http://www.lintcode.com/en/problem/find-peak-element/There is an integer array which has the following features:The numbers in adjacent positions are different.A[0] A[A.length - 1].原创 2016-06-21 01:38:59 · 1438 阅读 · 0 评论 -
LeetCode 374. Guess Number Higher or Lower
原题网址:https://leetcode.com/problems/guess-number-higher-or-lower/We are playing the Guess Game. The game is as follows:I pick a number from 1 to n. You have to guess which number I picked.Eve原创 2016-07-13 23:27:38 · 940 阅读 · 0 评论 -
LeetCode 352. Data Stream as Disjoint Intervals(数据流区间)
原题网址:https://leetcode.com/problems/data-stream-as-disjoint-intervals/Given a data stream input of non-negative integers a1, a2, ..., an, ..., summarize the numbers seen so far as a list of dis原创 2016-06-16 01:11:36 · 1594 阅读 · 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 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 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 154. Find Minimum in Rotated Sorted Array II(旋转数组查找)
原题网址:https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/Follow up for "Find Minimum in Rotated Sorted Array":What if duplicates are allowed?Would this affect the run-time原创 2016-05-26 00:57:56 · 482 阅读 · 0 评论 -
LintCode Find Peak Element II(查找峰值II)
原题网址:http://www.lintcode.com/en/problem/find-peak-element-ii/There is an integer matrix which has the following features:The numbers in adjacent positions are different.The matrix has n rows原创 2016-06-21 03:27:29 · 3006 阅读 · 0 评论