[leetcode] 167. Two Sum II - Input array is sorted

来源:互联网 发布:物理实验模拟软件 编辑:程序博客网 时间:2024/05/17 00:17

题目

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.

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

思路

典型的双指针问题。

初始化左指针left指向数组起始,初始化右指针right指向数组结尾。

根据已排序这个特性,

(1)如果numbers[left]与numbers[right]的和tmp小于target,说明应该增加tmp,因此left右移指向一个较大的值。

(2)如果tmp大于target,说明应该减小tmp,因此right左移指向一个较小的值。

(3)tmp等于target,则找到,返回left+1和right+1。(注意以1为起始下标)

时间复杂度O(n): 扫一遍

空间复杂度O(1)

ps: 严格来说,两个int的加和可能溢出int,因此将tmp和target提升为long long int再进行比较更鲁棒。

代码

class Solution {public:    vector<int> twoSum(vector<int> &numbers, int target) {        vector<int> ret(2,-1);        int left = 0;        int right = numbers.size()-1;        while(left < right)        {            int tmp = numbers[left]+numbers[right];            if(tmp == target)            {                ret[0] = left+1;                ret[1] = right+1;                return ret;            }            else if(tmp < target)            //make tmp larger                left ++;            else            //make tmp smaller                right --;        }    }};

以下是测试用例,全部通过:

int main(){    Solution s;    int A[4] = {2, 7, 11, 15};    vector<int> numbers1(A, A+4);    vector<int> ret = s.twoSum(numbers1, 9);    cout << ret[0] << ", " << ret[1] << endl;    int B[2] = {1, 1};    vector<int> numbers2(B, B+2);    ret = s.twoSum(numbers2, 2);    cout << ret[0] << ", " << ret[1] << endl;    int C[3] = {1,2,3};    vector<int> numbers3(C, C+3);    ret = s.twoSum(numbers3, 5);    cout << ret[0] << ", " << ret[1] << endl;    return 0;}

To solve this problem, we can use two points to scan the array from both sides. See Java solution below:

public int[] twoSum(int[] numbers, int target) {    if (numbers == null || numbers.length == 0)        return null;    int i = 0;    int j = numbers.length - 1;    while (i < j) {        int x = numbers[i] + numbers[j];        if (x < target) {            ++i;        } else if (x > target) {            j--;        } else {            return new int[] { i + 1, j + 1 };        }    }    return null;}
0 0
原创粉丝点击