码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 167. Two Sum II - Input array is sorted(双指针)

时间:2020-01-27 15:37:35      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:back   下标   etc   solution   sum   双指针   number   while   problems   

题目

题意:找出数组里两个数字之和为指定数字的两个下标。

题解:双指针

class Solution {
public:
    vector<int> twoSum(vector<int>& numbers, int target) {
        
        int left = 0;
        int right = numbers.size()-1;
        vector<int> ans;
        while(left < right)
        {
            if(numbers[left]+numbers[right]>target)
            {
                right--;
            }
            else if(numbers[left]+numbers[right]<target)
            {
                left++;
            }
            else
            {
                ans.push_back(left+1);
                ans.push_back(right+1);
                break;
            }
            
        }
        
        return ans;
        
    }
};

LeetCode 167. Two Sum II - Input array is sorted(双指针)

标签:back   下标   etc   solution   sum   双指针   number   while   problems   

原文地址:https://www.cnblogs.com/dacc123/p/12236057.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!