• 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]
    ]
    
    
    public List<List<Integer>> threeSum(int[] nums) {
    Arrays.sort(nums);
    List<List<Integer>> res = new LinkedList<>();
    for (int i = 0; i < nums.length; i++) {
    if (i > 0 && nums[i] == nums[i - 1]) continue;
    int low = i + 1, high = nums.length - 1;
    while (low < high) {
    if (nums[i] + nums[low] + nums[high] == 0) {
    res.add(Arrays.asList(nums[i], nums[low], nums[high]));
    while (low < high && nums[low] == nums[low + 1]) low++;
    while (low < high && nums[high] == nums[high - 1]) high--;
    low++;
    high--;
    } else if (nums[i] + nums[low] + nums[high] > 0) high--;
    else low++;
    }
    }
    return res;
    }

    类似题目:18. 4Sum

  • 相关阅读:
    BSGS
    聪聪可可(未完成)
    强连通分量,缩点
    bozj 1823(未完成)
    网络流
    bzoj1026
    点分治 poj1741
    bzoj 3270 博物馆
    高斯消元 模板
    bzoj 3143 [Hnoi2013]游走
  • 原文地址:https://www.cnblogs.com/wzj4858/p/7675381.html
Copyright © 2020-2023  润新知