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

15、3Sum

时间:2017-11-09 22:32:16      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:ica   nbsp   alt   out   https   result   ace   let   triple   

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

Note: 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]
]

 

第一遍写了下面的代码,是错的:

class Solution {
public:
    vector<vector<int>> threeSum(vector<int>& nums) {
        vector<vector<int>> answers;
        int n=0;
        if(nums.empty() || nums.capacity() < 3) return answers;
        for(int i=0; i < nums.capacity() - 2; i++)
            for(int j = i + 1; j < nums.capacity() - 1; j++)
                for(int k = j + 1; k < nums.capacity(); k++)
                    if(nums[i] + nums[j] + nums[k] == 0){
                        vector<int> answer;
                        answer.push_back(nums[i]);
                        answer.push_back(nums[j]);
                        answer.push_back(nums[k]);
                        answers.push_back(answer);
                    }   
        return answers;
    }
};

Submission Result: Wrong Answer More Details 

Input:[-1,0,1,2,-1,-4]
Output:[[-1,0,1],[-1,2,-1],[0,1,-1]]
Expected:[[-1,-1,2],[-1,0,1]]  
显然有重复的 [-1,0,1]和[0,1,-1]是算为一样的

 ——————————————————————————————————————————————————————————————————————

第二遍先对nums排序,代码也是错的:

class Solution {
public:
    vector<vector<int>> threeSum(vector<int>& nums) {
        vector<vector<int>> answers;
        std::sort(nums.begin(), nums.end());  //对nums排序
        int n=0,flag=0;
        if(nums.empty() || nums.capacity() < 3) return answers;
        for(int i=0; i < nums.capacity() - 2; i++){
            if(i>0 && nums[i] == nums[i - 1]) continue;   //如果当前元素等于前一个元素,跳过,防止出现重复配对
            for(int j = i + 1; j < nums.capacity() - 1; j++)
                for(int k = j + 1; k < nums.capacity(); k++)
                    if(nums[i] + nums[j] + nums[k] == 0){
                        vector<int> answer;
                        answer.push_back(nums[i]);
                        answer.push_back(nums[j]);
                        answer.push_back(nums[k]);
                        answers.push_back(answer);
                    }   
        }
        return answers;
    }
};

结果没通过:

Input:[0,0,0,0]
Output:[[0,0,0],[0,0,0],[0,0,0]]
Expected:[[0,0,0]]
 ————————————————————————————————————————————————————————————————————————
 
最终没做对,做了一两个小时没做对。。。。看答案:
class Solution {
public:
   vector<vector<int> > threeSum(vector<int> &num) {
    
    vector<vector<int> > res;

    std::sort(num.begin(), num.end());

    for (int i = 0; i < num.size(); i++) {
        
        int target = -num[i];
        int front = i + 1;
        int back = num.size() - 1;

        while (front < back) {

            int sum = num[front] + num[back];
            
            // Finding answer which start from number num[i]
            if (sum < target)
                front++;

            else if (sum > target)
                back--;

            else {
                vector<int> triplet(3, 0);
                triplet[0] = num[i];
                triplet[1] = num[front];
                triplet[2] = num[back];
                res.push_back(triplet);
                
                // Processing duplicates of Number 2
                // Rolling the front pointer to the next different number forwards
                while (front < back && num[front] == triplet[1]) front++;

                // Processing duplicates of Number 3
                // Rolling the back pointer to the next different number backwards
                while (front < back && num[back] == triplet[2]) back--;
            }
            
        }

        // Processing duplicates of Number 1
        while (i + 1 < num.size() && num[i + 1] == num[i]) 
            i++;

    }
    
    return res;
    
}
};

 

 

15、3Sum

标签:ica   nbsp   alt   out   https   result   ace   let   triple   

原文地址:http://www.cnblogs.com/hozhangel/p/7811217.html

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