zoukankan      html  css  js  c++  java
  • 15、3Sum

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

    第一遍写了下面的代码,代码问题是运行过程中

    输入[-1,0,1,2,-1,-4]

    输出结果为:[[-1,0,1],[-1,2,-1],[0,1,-1]](似乎没有什么问题)

    但是标准答案要的结果是:[[-1,-1,2],[-1,0,1]] 。

    所以[-1,0,1]与[0,1,-1]看做是重复的,应该只留一个。

     有问题代码一:

    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.puh_back(nums[j]);
                            answer.push_back(nums[k]);
                            answers.push_back(answer);
                        }   
            return answers;
        }
    };

     

     

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

    第二遍先对nums排序,加了两行,但是

    输入:[0,0,0,0]
    运行输出是:[[0,0,0],[0,0,0],[0,0,0]]
    显然重复,应该输出:[[0,0,0]]才对
    所以这次代码提交也没通过:
     
    有问题代码二:
    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;
        }
    };
     
     ————————————————————————————————————————————————————————————————————————
     
    最终没做对,做了一两个小时没做对。。。。看官网讨论区的答案吧:
    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;
        
    }
    };
     
  • 相关阅读:
    html 基本布局介绍
    Hbase1.1.x Java版之批量查删操作
    java命令执行jar文件
    【转】python多版本并存,python3安装pip
    JavaHbase连接代码示例
    Shell执行将脚本里的变量打印到指定日志文件
    Datax将本地文件导入Hbase数据库!!!酷酷酷
    shell关于日期的加减
    python2安装pymongo
    Python从MongoDB中按天读取数据并格式化日志
  • 原文地址:https://www.cnblogs.com/hozhangel/p/7811217.html
Copyright © 2011-2022 走看看