题目: 给定一个已按照升序排列 的有序数组,找到两个数使得它们相加之和等于目标数。 函数应该返回这两个下标值 index1 和 index2,其中 index1 必须小于 index2。 说明: 返回的下标值(index1 和 index2)不是从零开始的。 你可以假设每个输入只对应唯一的答案,而且你不可以重复使用相同的元素。 思路: 因为有存在相同元素的可能,且是升序排列,所以使用双指针法好一些。 程序:
def search(nums, target): i = 0 j = len(nums) - 1 while i < j: if nums[i] + nums[j] == target: return [i + 1, j + 1] elif nums[i] + nums[j] > target: j -= 1 else: i += 1 return False nums = [1, 2, 3, 6, 5, 9, 8] target = 8 print(search(nums, target))
标签:target,nums,python,相加,标值,index2,升序,index1 From: https://www.cnblogs.com/shaoyishi/p/16909518.html