首页 > 其他 > 详细

15. 3Sum

时间:2018-09-30 22:21:50      阅读:147      评论:0      收藏:0      [点我收藏+]

Given an array nums of n integers, are there elements abc in nums 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.

Example:

Given array nums = [-1, 0, 1, 2, -1, -4],

A solution set is:
[
  [-1, 0, 1],
  [-1, -1, 2]
]

AC code:

class Solution {
public:
    vector<vector<int>> threeSum(vector<int>& nums) {
        int len = nums.size();
        vector<vector<int> > v;
        sort(nums.begin(), nums.end());
        int front, tear, target, sum;
        for (int i = 0; i < len; ++i) {
            target = -nums[i];
            front = i + 1;
            tear = len-1;
            while (front < tear) {
                sum = nums[front] + nums[tear];
                if (sum < target) {
                    front++;
                } else if (sum > target) {
                    tear--;
                } else {
                    vector<int> sub_ans(3, 0);
                    sub_ans[0] = nums[i];
                    sub_ans[1] = nums[front];
                    sub_ans[2] = nums[tear];
                    v.push_back(sub_ans);
                    while (front < tear && nums[front] == sub_ans[1])
                        front++;
                    while (front < tear && nums[tear] == sub_ans[2])
                        tear--;
                }
            }
            while ((i+1) < len && nums[i] == nums[i+1]) {
                i++;
            }
        }
        return v;
    }
};
Runtime: 120 ms, faster than 40.59% of C++ online submissions for 3Sum.

 

 

  

 

15. 3Sum

原文:https://www.cnblogs.com/ruruozhenhao/p/9733476.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!