您的位置 首页 JAVA(2017)

LeetCode – 167. Two Sum II – Input array is sorted

Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

You may assume that each input would have exactly one solution and you may not use the same element twice.

Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2

典型的双指针,不多说了

public class Solution {
    public int[] twoSum(int[] numbers, int target) {
        int[] result = new int[2];
        int h= 0;
        int l = numbers.length -1;
        while(h<numbers.length && l>0 && l>h){
            if(numbers[l]> target){
                l--;
                break;
            }
            if(numbers[h] + numbers[l] == target){
                result[0] =h+1;
                result[1] = l+1;
                return result;
            }
            if(numbers[h] + numbers[l] < target){
                h++;
            }
            else{
                l--;
            }
        }
        return result;
    }
}
看完了?留个评分呗?
[0人评了分,平均: 0/5]

本站原创文章皆遵循“署名-非商业性使用-相同方式共享 3.0 (CC BY-NC-SA 3.0)”。转载请保留以下标注:

原文来源:《LeetCode – 167. Two Sum II – Input array is sorted》

发表评论

邮箱地址不会被公开。

返回顶部