首页 > 编程语言 > 详细

Find Minimum in Rotated Sorted Array II 旋转数组中找最小值(有重复元素) @LeetCode

时间:2014-11-11 12:39:53      阅读:303      评论:0      收藏:0      [点我收藏+]

递归


public class Solution {
    public int findMin(int[] num) {
        return helper(num, 0, num.length-1);
    }
    
    //with duplicate
    public static int helper(int[] a, int left, int right){
         
        //one element
        if(left == right){
            return a[left];
        }
         
        //two elements
        if(left == right-1){
            return a[left]<a[right]? a[left]: a[right];
        }
         
        //the array is ordered
        if(a[left] < a[right]){
            return a[left];
        }
         
        int mid = (left+right)/2;
         
        if(a[mid] > a[left]){
            return helper(a, mid, right);
        }else if(a[mid] < a[left]){
            return helper(a, left, mid);
        }else{ //when a[mid] == a[left], we have to search both side
            return Math.min(helper(a, mid, right), helper(a, left, mid));
        }
         
    }
}





Find Minimum in Rotated Sorted Array II 旋转数组中找最小值(有重复元素) @LeetCode

原文:http://blog.csdn.net/fightforyourdream/article/details/41009717

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