Leetcode15。3つの数字の合計(インタビュークラシック、繰り返し読む)

アイデア:

最初に右に行く
2番目=最初+1右に行く
3番目=n-1左に行く
この時点
で最初+2番目+3番目=ターゲットと仮定すると、次の異なる結果は右に2番目、左に3番目に移動して答えが確実になるようにする必要があります違う

class Solution {
    
    
public:
    vector<vector<int>> threeSum(vector<int>& nums) {
    
    
        int n = nums.size();
        sort(nums.begin(), nums.end());
        vector<vector<int>> ans;
        // 枚举 a
        for (int first = 0; first < n; ++first) {
    
    
            // 需要和上一次枚举的数不相同
            if (first > 0 && nums[first] == nums[first - 1]) {
    
    
                continue;
            }
            // c 对应的指针初始指向数组的最右端
            int third = n - 1;
            int target = -nums[first];
            // 枚举 b
            for (int second = first + 1; second < n; ++second) {
    
    
                // 需要和上一次枚举的数不相同
                if (second > first + 1 && nums[second] == nums[second - 1]) {
    
    
                    continue;
                }
                // 需要保证 b 的指针在 c 的指针的左侧
                while (second < third && nums[second] + nums[third] > target) {
    
    
                    --third;
                }
                // 如果指针重合,随着 b 后续的增加
                // 就不会有满足 a+b+c=0 并且 b<c 的 c 了,可以退出循环
                if (second == third) {
    
    
                    break;
                }
                if (nums[second] + nums[third] == target) {
    
    
                    ans.push_back({
    
    nums[first], nums[second], nums[third]});
                }
            }
        }
        return ans;
    }
};


おすすめ

転載: blog.csdn.net/weixin_43579015/article/details/123462329