旋转数组的最小元素

Posted chaoza1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了旋转数组的最小元素相关的知识,希望对你有一定的参考价值。

把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。 输入一个非减排序的数组的一个旋转,输出旋转数组的最小元素。 例如数组{3,4,5,1,2}为{1,2,3,4,5}的一个旋转,该数组的最小值为1。 NOTE:给出的所有元素都大于0,若数组大小为0,请返回0。

解法一:

class Solution {
public:
    int minNumberInRotateArray(vector<int> rotateArray) {
        /*
        if(rotateArray.size() == 0)
        {
            throw new std::exception("Invalid parameters");
        }
        */
        int start = 0,end = rotateArray.size()-1;
        int indexMid = start;
        while(rotateArray[start]>=rotateArray[end])
        {
            if(end-start == 1)
            {
                indexMid = end;
                break;
            }
            indexMid=(start+end)/2;
            if(rotateArray[indexMid]>=rotateArray[start])
                start = indexMid;
            else if(rotateArray[indexMid] <= rotateArray[end])
                end = indexMid;
        }
        return rotateArray[indexMid];
    }
};

技术图片

 

以上是关于旋转数组的最小元素的主要内容,如果未能解决你的问题,请参考以下文章

剑指OFFER旋转数组的最小数字

剑指offer——旋转数组的最小数字

旋转最小数组(重复元素)

剑指offer旋转数组的最小数字python

旋转数组的最小元素

旋转数组,求最小元素