剑指 Offer 11. 旋转数组的最小数字
Posted tripl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指 Offer 11. 旋转数组的最小数字相关的知识,希望对你有一定的参考价值。
1、题目
把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。输入一个递增排序的数组的一个旋转,输出旋转数组的最小元素。例如,数组 [3,4,5,1,2] 为 [1,2,3,4,5] 的一个旋转,该数组的最小值为1。
示例 1:输入:[3,4,5,1,2] 输出:1
示例 2:输入:[2,2,2,0,1] 输出:0
2、答案
二分法
public static int minArray(int[] numbers) { int startIndex = 0; int endIndex = numbers.length - 1; while (startIndex < endIndex) { int mid = (endIndex - startIndex) / 2 + startIndex; if (numbers[endIndex] > numbers[mid]) { endIndex = mid; } else if (numbers[endIndex] < numbers[mid]) { startIndex = mid + 1; } else { endIndex = endIndex - 1; } } return numbers[startIndex]; }
以上是关于剑指 Offer 11. 旋转数组的最小数字的主要内容,如果未能解决你的问题,请参考以下文章