数组中相加和为0的三元组

题目描述

给出一个有n个元素的数组S,S中是否有元素a,b,c满足a+b+c=0?找出数组S中所有满足条件的三元组。

注意:

  1. 三元组(a、b、c)中的元素必须按非降序排列。(即a≤b≤c)
  2. 解集中不能包含重复的三元组。
例如,给定的数组 S = {-10 0 10 20 -10 -40},解集为(-10, 0, 10) (-10, -10, 20)

双指针问题

class Solution {
public:
    vector<vector<int> > threeSum(vector<int> &num) {
        sort(num.begin(), num.end());
        vector<vector<int>> res;
        if(num.size()<3) return res;
        for(int i=0;i<num.size()-2;i++){
            int l = i+1;
            int r = num.size() - 1;
            while(l<r){
                while(l<r && num[i]+num[l]+num[r]>0) r--;
                if(l == r) break;
                if(num[i]+num[l]+num[r] == 0){
                    res.push_back(vector<int> {num[i], num[l], num[r]});
                    while(l<r && num[l+1]==num[l]) l++;
                }
                l++;
            }
            while(i<num.size()-1 && num[i+1]==num[i]) i++;
        }
        return res;
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值