#yyds干货盘点# LeetCode程序员面试金典:搜索旋转数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#yyds干货盘点# LeetCode程序员面试金典:搜索旋转数组相关的知识,希望对你有一定的参考价值。
题目:
搜索旋转数组。给定一个排序后的数组,包含n个整数,但这个数组已被旋转过很多次了,次数不详。请编写代码找出数组中的某个元素,假设数组元素原先是按升序排列的。若有多个相同元素,返回索引值最小的一个。
示例1:
输入: arr = [15, 16, 19, 20, 25, 1, 3, 4, 5, 7, 10, 14], target = 5
输出: 8(元素5在该数组中的索引)
示例2:
输入:arr = [15, 16, 19, 20, 25, 1, 3, 4, 5, 7, 10, 14], target = 11
输出:-1 (没有找到)
代码实现:
class Solution
public int search(int[] arr, int target)
if (arr[0] == target)
return 0;
int left = 0;
int right = arr.length - 1;
while (left <= right)
int mid = (left + right) >>> 1;
if (arr[mid] == target)
while (mid > 1 && arr[mid - 1] == arr[mid])
mid--;
return mid;
else if (arr[mid] > arr[left])
if (arr[left] <= target && target < arr[mid])
right = mid - 1;
else
left = mid + 1;
else if (arr[mid] < arr[left])
if (arr[mid] < target && target <= arr[right])
left = mid + 1;
else
right = mid - 1;
else
left++;
return -1;
以上是关于#yyds干货盘点# LeetCode程序员面试金典:搜索旋转数组的主要内容,如果未能解决你的问题,请参考以下文章
#yyds干货盘点# LeetCode程序员面试金典:连续数列
#yyds干货盘点# LeetCode程序员面试金典:翻转数位
#yyds干货盘点# LeetCode程序员面试金典:回文排列
#yyds干货盘点# LeetCode程序员面试金典:整数转换