私の問題文の解釈は、Rotatedであるかどう関係なく、ただのbinary searchでindexみつけてくださいっていう問題かと思いました。そうであったらそういう風に問題文をかかない理由がわからないのですが、どうしてわざわざRotatedを題材として問題をだしているかどうか、どなたか理解できる方いらっしゃいますでしょうか?
なぜ、roteatedさせたのかは不明ですが、とりあえずbinary searchの問題っていうのは察したのでbinary searchで書いて不正解になってしまったコード
を実装してみましたが、この先、正解にたどり着くことに苦戦しています。誤った箇所のご指摘、もしくはこう書くといいなどありましたら、ご教示いただけますでしょうか?
There is an integer array nums sorted in ascending order (with distinct values).
Prior to being passed to your function, nums is possibly rotated at an unknown pivot index k (1 <= k < nums.length) such that the resulting array is [nums[k], nums[k+1], ..., nums[n-1], nums[0], nums[1], ..., nums[k-1]] (0-indexed). For example, [0,1,2,4,5,6,7] might be rotated at pivot index 3 and become [4,5,6,7,0,1,2].
Given the array nums after the possible rotation and an integer target, return the index of target if it is in nums, or -1 if it is not in nums.
You must write an algorithm with O(log n) runtime complexity.
Example 1:Input: nums = [4,5,6,7,0,1,2], target = 0
Output: 4
Example 2:Input: nums = [4,5,6,7,0,1,2], target = 3
Output: -1
Example 3:Input: nums = [1], target = 0
Output: -1
33. Search in Rotated Sorted Array
binary searchで書いて不正解になってしまったコード
python
1class Solution: 2 def search(self, nums: List[int], target: int) -> int: 3 if target not in nums: 4 return -1 5 if len(nums) == 1 and nums[0] == target: 6 return 0 7 8 left, right = 0, len(nums) - 1 9 10 # [4,5,6,7,0,1,2], target = 0 11 while left < right: # 0 < 6, 3 < 6 12 center = (left+right)//2 # 3, 4 13 print(center) 14 if nums[center] == target: # 0 == 0 15 return center 16 17 if nums[center] > target: # 7 < 0 18 left = center # 3 19 else: 20 right = center 21
自分で解いた正解の解答
python
1class Solution: 2 def search(self, nums: List[int], target: int) -> int: 3 4 if len(nums) == 1 and target in nums: 5 return nums.index(target) 6 7 if target not in nums: 8 return -1 9 10 return nums.index(target)