首页 > 其他 > 详细

[LintCode] 159 Find Minimum in Rotated Sorted Array

时间:2017-04-25 11:24:52      阅读:190      评论:0      收藏:0      [点我收藏+]

Description
Suppose a sorted array is rotated at some pivot unknown to you beforehand.

(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).

Find the minimum element.

Notice

You may assume no duplicate exists in the array.


Example
Given [4, 5, 6, 7, 0, 1, 2] return 0

4/24/2017

算法班

不需要跟特定值比较,while里面判断只有2个分支。

 1 public class Solution {
 2     /**
 3      * @param nums: a rotated sorted array
 4      * @return: the minimum number in the array
 5      */
 6     public int findMin(int[] nums) {
 7         // write your code here
 8         if (nums == null || nums.length == 0) return -1;
 9         int start = 0, end = nums.length - 1;
10         
11         while (start + 1 < end) {
12             int mid = start + (end - start) / 2;
13             if (nums[mid] < nums[end]) {
14                 end = mid;
15             } else {
16                 start = mid;
17             }
18         }
19         return nums[start] < nums[end]? nums[start]: nums[end];
20     }
21 }

 

[LintCode] 159 Find Minimum in Rotated Sorted Array

原文:http://www.cnblogs.com/panini/p/6760750.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!