Q:
Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific target number. Let these two numbers be numbers[index1] and numbers[index2] where 1 <= index1 < index2 <= numbers.length.
Return the indices of the two numbers, index1 and index2, added by one as an integer array [index1, index2] of length 2.
The tests are generated such that there is exactly one solution. You may not use the same element twice.
Your solution must use only constant extra space.
A: I will use a head pointer and a tail pointer to scan the array.
Since the array is sorted, initially the head pointer points to the smallest number and the tail pointer points to the largest number.
When the head value plus the tail value is samller than target, the head pointer should be added.
When the head value plus the tail value is larger than target, the tail pointer should be decreased.
class Solution {
public int[] twoSum(int[] numbers, int target) {
int n = numbers.length;
int i = 0, j = n-1;
while(i<j){
if((numbers[i]+numbers[j])==target){
return new int[]{i+1,j+1};
}else if((numbers[i]+numbers[j])>target){
j--;
}else{
i++;
}
}
return null;
}
}
本文介绍了一种解决有序数组中寻找两个数使其和等于特定目标值的问题的方法。该方法利用双指针技巧,从数组两端开始扫描,通过比较当前两数之和与目标值的大小来决定移动哪个指针,最终找到符合条件的两个数。
363

被折叠的 条评论
为什么被折叠?



