3.搜索旋转排序数组
假设按照升序排序的数组在预先未知的某个点上进行了旋转。
( 例如,数组 [0,1,2,4,5,6,7] 可能变为 [4,5,6,7,0,1,2] )。
搜索一个给定的目标值,如果数组中存在这个目标值,则返回它的索引,否则返回 -1 。
你可以假设数组中不存在重复的元素。
你的算法时间复杂度必须是 O(log n) 级别。
示例一:
输入: nums = [4,5,6,7,0,1,2], target = 0 输出: 4
示例二:
输入: nums = [4,5,6,7,0,1,2], target = 3 输出:-1本题首先对比目标值与旋转后数组第一个值,如果目标值大于旋转数组后的第一个值,就从前往后遍历,如果小于,则从后往前遍历,代码如下:
class Solution(object): def search(self, nums, target): """ :type nums: List[int] :type target: int :rtype: int """ l = len(nums) if l==0: return -1 if target>nums[0]: for i in xrange(l): if target==nums[i]: return i else: for i in xrange(l-1,-1,-1): if target==nums[i]: return i return -1因为利用python进行解题,所以可以利用python列表的特性直接进行解题:
class Solution(object): def search(self, nums, target): """ :type nums: List[int] :type target: int :rtype: int """ if target in nums: return nums.index(target) return -1