码迷,mamicode.com
首页 > 编程语言 > 详细

旋转数组的最小元素

时间:2019-04-10 13:56:36      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:star   cto   style   mic   vector   ota   src   image   turn   

把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。 输入一个非减排序的数组的一个旋转,输出旋转数组的最小元素。 例如数组{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];
    }
};

技术图片

 

旋转数组的最小元素

标签:star   cto   style   mic   vector   ota   src   image   turn   

原文地址:https://www.cnblogs.com/chaoza1/p/10682796.html

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