Leetcode(java) 167. Two Sum II - Input Array Is Sorted

本文介绍了一种解决有序数组中寻找两个数使其和等于特定目标值的问题的方法。该方法利用双指针技巧,从数组两端开始扫描,通过比较当前两数之和与目标值的大小来决定移动哪个指针,最终找到符合条件的两个数。

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;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值