[剑指-06](php&python):旋转数组的最小数字

2018-12-26  本文已影响0人  myFamily329
说明:记录刷剑指offer,使用php与python两种语言,对解题思路以及涉及到的基本语法以及知识点做学习记录。其中对于每道题目进行粗略的分类。
题目来源
题目描述

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

解题思路(参考剑指offer 第二版)
Note:
编程实现
PHP
运行时间:727ms

占用内存:5624k
<?php

function minNumberInRotateArray($rotateArray)
    {
        if(count($rotateArray) == 0 || empty($rotateArray)){
            return 0;
        }
        $length = count($rotateArray);
        $left = 0;
        $right = $length - 1;
        //如果是已经旋转后的数组,所以才会有此句,直接进入返回
        $indexMid = $left;
        while ($rotateArray[$left] >= $rotateArray[$right]) {
            
            if($right - $left == 1){
                return $rotateArray[$right];
                break;
            }
            //一定要注意:不使用floor(或者ceil函数)存在问题,php运算符‘/’ 是浮点运算,不是c语言整除
            $indexMid = floor(($left + $right) / 2);
            
            if($rotateArray[$left] == $rotateArray[$right] && $rotateArray[$indexMid] == $rotateArray[$left]){
                return findMin($rotateArray, $left, $right);
            }
            if($rotateArray[$indexMid] >= $rotateArray[$left]){
                $left = $indexMid;
            }elseif ($rotateArray[$indexMid] <= $rotateArray[$right]){
                $right = $indexMid;
            }
        }
        return $rotateArray[$indexMid];
    }
    // 顺序查找
    function finMin($rotateArray, $left, $right){
        $result = $rotateArray[$left];
        $index = $left + 1;
        for($index;$index <= $right; ++$index){
            if($result > $rotateArray[$index]){
                $result = $rotateArray[$index];
            }
        }
        return $result;
    }

/* 测试用例 
a. 功能测试(输入数组为升序数组的一个旋转,存在重复或者不存在重复元素)
b. 边界测试(只包含一个数字的数组)
c.特殊输入测试(数组为空等)
*/
$array = array(4,5,7,9,10,0,1,2,3);
var_dump(minNumberInRotateArray($array));
?>
Python
# -*- coding:utf-8 -*-
class Solution:
    def MinNumber(self, rotateArray, left, right):
        res = rotateArray[left]
        for i in range(left, right + 1):
            if rotateArray[i] < res:
                res = rotateArray[i]
        return res

    def minNumberInRotateArray(self, rotateArray):
        # write code here
        length = len(rotateArray)
        if length == 0:
            return 0
        else:
            left = 0
            right = length - 1
            while left <= right:
                # 不做此处理时间会超时
                if (right - left) == 1:
                    return rotateArray[right]
                mid = (left + right) / 2
                # 如果出现大量重复(例如:[1,0,1,1,1]),只能顺序查找
                if rotateArray[mid] == rotateArray[left] and rotateArray[mid] == rotateArray[right]:
                    return self.MinNumber(rotateArray, left, right)
                elif rotateArray[mid] >= rotateArray[left]:
                    left = mid
                elif rotateArray[mid] <= rotateArray[right]:
                    right = mid
            return rotateArray[right]


s = Solution()
print s.minNumberInRotateArray([1, 0, 1, 1, 1])
print s.minNumberInRotateArray([3, 4, 5, 1, 2])
知识总结复习
上一篇下一篇

猜你喜欢

热点阅读