美文网首页
15+18、3Sum 4Sum

15+18、3Sum 4Sum

作者: 小鲜贝 | 来源:发表于2018-04-18 13:42 被阅读0次

    15、3Sum

    Example

        given array S = {-1 0 1 2 -1 -4},
        A solution set is:
        (-1, 0, 1)
        (-1, -1, 2)
    

    复杂度

    时间 O(N^2)  空间 O(1)
    

    思路

    双指针法
    3Sum其实可以转化成一个2Sum的题,先从数组中选一个数,并将目标数减去这个数,得到一个新目标数。
    然后再在剩下的数中找一对和是这个新目标数的数,其实就转化为2Sum了。
    为了避免得到重复结果,不仅要跳过重复元素,而且要保证2Sum找的范围要是在最先选定的那个数之后的。
    

    解法

    public class Solution {
        public List<List<Integer>> threeSum(int[] nums) {
            Arrays.sort(nums);
            ArrayList<List<Integer>> res = new ArrayList<List<Integer>>();
            for(int i = 0; i < nums.length - 2; i++){
                // 跳过重复元素
                if(i > 0 && nums[i] == nums[i-1]) continue;
                // 计算2Sum
                ArrayList<List<Integer>> curr = twoSum(nums, i, 0 - nums[i]);
                res.addAll(curr);
            }
            return res;
        }
        
        private ArrayList<List<Integer>> twoSum(int[] nums, int i, int target){
            int left = i + 1, right = nums.length - 1;
            ArrayList<List<Integer>> res = new ArrayList<List<Integer>>();
            while(left < right){
                if(nums[left] + nums[right] == target){
                    ArrayList<Integer> curr = new ArrayList<Integer>();
                    curr.add(nums[i]);
                    curr.add(nums[left]);
                    curr.add(nums[right]);
                    res.add(curr);
                    do {
                        left++;
                    }while(left < nums.length && nums[left] == nums[left-1]);
                    do {
                        right--;
                    } while(right >= 0 && nums[right] == nums[right+1]);
                } else if (nums[left] + nums[right] > target){
                    right--;
                } else {
                    left++;
                }
            }
            return res;
        }
    }
    

    18、4Sum

    Example

    Given array S = {1 0 -1 0 -2 2}, and target = 0. 
    A solution set is:
    (-1, 0, 0, 1)
    (-2, -1, 1, 2)
    (-2, 0, 0, 2)
    

    解法

    public class Solution {
        public ArrayList<ArrayList<Integer>> fourSum(int[] A, int target) {
            int n = A.length;
            ArrayList<ArrayList<Integer>> res = new ArrayList();
            Arrays.sort(A);
            for (int i = 0; i < n-3; i++) {
                if (i != 0 && A[i] == A[i-1]) continue;
                for (int j = i+1; j <= n-3; j++) {
                    if (j != i+1 && A[j] == A[j-1]) continue;
                    int left = j+1, right = n-1;
                    while (left < right) {
                        int sum = A[i]+A[j]+A[left]+A[right];
                        if (sum == target) {
                            ArrayList<Integer> temp = new ArrayList();
                            temp.add(A[i]);
                            temp.add(A[j]);
                            temp.add(A[left]);
                            temp.add(A[right]);
                            res.add(temp);
                            left++;
                            right--;
                            while (left < right && A[left] == A[left-1]) left++;
                            while (left < right && A[right] == A[right+1]) right--;
                        }
                        else if (sum < target) left++;
                        else right--;
                    }
                }
            }
            return res;
        }
    }
    

    相关文章

      网友评论

          本文标题:15+18、3Sum 4Sum

          本文链接:https://www.haomeiwen.com/subject/wsuvkftx.html