力扣题目【两数之和】变种

力扣题目【两数之和】变种,第1张

力扣题目【两数之和】变种

原题目

原题输入的数组是无序的,使用双指针来解题的时候遇到了问题。如果修改题目条件为输入的数组都是降序或者升序排列,那么就可以使用双指针法

code

#include
#include
#include
using namespace std;
class Solution {
public:
    vector twoSum(vector& nums, int target) {
        vector ress;
        int left;
        int right;
        sort(nums.begin(), nums.end());
        for (int left = 0; left < nums.size(); left++)
        {
            if (nums[left] > target)
            {
                return ress;
            }
            right = nums.size() - 1;
            while (right > left)
            {
                while (right > left && nums[left] + nums[right] > target)
                {
                    right--;
                }
                while (right > left && nums[left] + nums[right] < target)
                {
                    left++;
                }
                if (nums[right] + nums[left] == target)
                {
                    ress = { left,right };
                    return ress;
                }
                else
                {
                    continue;
                }
            }


        }
        return ress;
    }
};
int main()
{
    vector A{ 2,3,4 };
    Solution SS;
    vector res = SS.twoSum(A, 5);
    cout << "[" << res[0] << "," << res[1] << "]" << endl;
    return 0;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5699580.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存