码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]153 Find Minimum in Rotated Sorted Array

时间:2015-01-09 19:35:03      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:leetcode

https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array/

http://blog.csdn.net/linhuanmars/article/details/40449295

public class Solution {
    public int findMin(int[] num) {
        // Assume num is not null.
        return find(num, 0, num.length - 1);
    }
    
    private int find(int[] n, int low, int high)
    {
        if (low == high)
            return n[low];
            
        if (high - low == 1)
            return Math.min(n[low], n[high]);

        int mid = low + (high - low) / 2;        

        if (n[low] < n[mid])
        {
            if (n[low] < n[high])
                return find(n, low, mid);
            else
                return find(n, mid, high);
        }
        else
        {
            if (n[low] > n[high])
                return find(n, low, mid);
            else
                return find(n, mid, high);
        }
    }
}


[LeetCode]153 Find Minimum in Rotated Sorted Array

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1601235

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!