输入一个递增排序的数组和一个数字s,在数组中查找两个数,使得它们的和正好是s。如果有多对数字的和等于s,则输出任意一对即可。
示例1:
输入:nums = [2,7,11,15], target = 9
输出:[2,7] 或者 [7,2]
示例2:
输入:nums = [10,26,30,31,47,60], target = 40
输出:[10,30] 或者 [30,10]
解题思路
双指针法:
设置两个指针分别为头指针head和尾指针tail,对其所指的数进行求和,有以下情况:
- sum > target:将尾指针前移
- sum == target: 返回头尾指针所指的数。
- sum < target: 头指针后移
class Solution {
public int[] twoSum(int[] nums, int target) {
int head = 0, tail = nums.length - 1;
while (head < tail) {
int sum = nums[head] + nums[tail];
if (sum < target) head++;
else if (sum > target) tail--;
else return new int[] {nums[head], nums[tail]};
}
return new int[0];
}
}