15. 3Sum

题目描述

Given an array S of n integers, are there elements a, b, c
in S such that a + b + c = 0? Find all unique triplets in the array
which gives the sum of zero.

Note:

Elements in a triplet (a,b,c) must be in non-descending order. (ie, a ≤ b ≤ c)
The solution set must not contain duplicate triplets.

For example, given array S = {-1 0 1 2 -1 -4},

A solution set is:
(-1, 0, 1)
(-1, -1, 2)

tip

为了做到不重复,只需要在设计程序时,枚举时每次做到三元组的每个
位置的值不同即可

代码

class Solution {
public:
    vector<vector<int> > threeSum(vector<int> &num) 
    {
        vector<vector<int>> ret;
    	if(num.size()<3)
    		return ret;
        sort(num.begin(),num.end());
        if(num[0]>0 || num[num.size()-1]<0)
        	return ret;
        //i为枚举的三元数的第一个数下标,对于三元数其他两个数的
        //枚举只需要按照2sum那样从两边向中间扫
        //也就是说3sum最终要转化为2sum,多出来的一个数按照常规
        //直接遍历枚举
        for(int i = 0;i < num.size();i++)
        {   
        	if(num[i] > 0)
        		break;
            if(i>0 && num[i]==num[i-1])
            	continue;
            int target=-num[i];
            int l = i+1;
            int r = num.size()-1;
            while(l<r)
            {
            	int sum = num[l]+num[r];
                if(sum > target)
                	r--;
                else if(sum < target)
                	l++;
                else
                {
                   vector<int> temp;
                    temp.push_back(num[i]);
                    temp.push_back(num[l]);
                    temp.push_back(num[r]);
                    ret.push_back(temp);
                    l++;r--;
                    while(l<r && num[l]==num[l-1]) l++;
                    while(l<r && num[r]==num[r+1]) r--;
                }
            }
        }
        return ret;    
    }
};

posted on 2021-05-01 09:02  朴素贝叶斯  阅读(38)  评论(0编辑  收藏  举报

导航