剑指offer 面试11题

Posted yanmk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer 面试11题相关的知识,希望对你有一定的参考价值。

面试11题:

题目:

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

解题思路:二分查找,以及分情况考虑(稍显麻烦)详见:剑指offer P83

解题代码:

# -*- coding:utf-8 -*-
class Solution:
    def minNumberInRotateArray(self, rotateArray):
        # write code here
        if not rotateArray:
            return
        if len(rotateArray)==0:
            return 0
        index1=0
        index2=len(rotateArray)-1
        indexMid=index1
        while (rotateArray[index1]>=rotateArray[index2]):
            if (index2-index1)==1:
                indexMid=index2
                break
            indexMid = (index1+index2)//2
            # 如果index1 index2 indexMid三者相等
            if rotateArray[index1]==rotateArray[index2] and rotateArray[indexMid]==rotateArray[index1]:
                return self.minValue(rotateArray,index1,index2)

            if rotateArray[indexMid]>=rotateArray[index1]:
                index1=indexMid
            if rotateArray[indexMid]<=rotateArray[index2]:
                index2=indexMid

        return rotateArray[indexMid]

    def minValue(self,rotateArray,index1,index2):
        res=rotateArray[index1]
        for i in range(index1+1,index2+1):
            if res>rotateArray[i]:
                res=rotateArray[i]
        return res

 

以上是关于剑指offer 面试11题的主要内容,如果未能解决你的问题,请参考以下文章

剑指Offer面试题11(Java版):数值的整数次方

剑指offer面试题 29. 顺时针打印矩阵

剑指offer面试题 29. 顺时针打印矩阵

剑指offer 面试43题

剑指offer:面试题20顺时针打印矩阵

剑指offer面试题 11. 旋转数组的最小数字