我是靠谱客的博主 会撒娇超短裙,最近开发中收集的这篇文章主要介绍leetcode/数组中和为0的三个不同数代码参考,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

代码

package com.xcrj;

import java.util.*;

/**
 * 剑指 Offer II 007. 数组中和为 0 的三个数
 * 数组是无序的
 * 给定一个包含 n 个整数的数组nums,判断nums中是否存在三个元素a ,b ,c ,使得a + b + c = 0 ?请找出所有和为 0 且不重复的三元组
 * a + b + c = 0并且要求a b c都不相同
 */
public class Solution7 {

    /**
     * 转换为剑指 Offer II 006. 排序数组中两个数字之和 问题
     * 对数组排序
     * a + b = c
     */
    public List<List<Integer>> threeSum1(int[] nums) {
        // 结果,
        Set<List<Integer>> set = new HashSet<>(3);
        // 升序排序 上面set?,题目要求结果不重复,例如 -4,-1,-1,0,1,2。[-1,0,1],[-1,0,-1]就是重复的
        Arrays.sort(nums);
        // 双指针
        for (int k = 0; k < nums.length; k++) {
            // target=-c
            int target = 0 - nums[k];
            // 从k的下一个元素开始应用双指针
            int i = k + 1;
            int j = nums.length - 1;
            while (i < j) {
                int sum = nums[i] + nums[j];
                if (sum == target) {
                    // asList(T... a) 传入可变参数,变长参数
                    // !! add值相同则丢弃 (e==null ? e2==null : e.equals(e2))
                    // !! ArrayList的equal() 根据 对象引用相等||数组中元素值相等
                    set.add(Arrays.asList(nums[k], nums[i], nums[j]));
                    // 存在新的a+b+c=0的情况
                    i++;
                    j--;
                } else if (sum < target) i++;
                else j--;
            }
        }

        // ArrayList(Collection<? extends E> c)
        return new ArrayList<>(set);
    }

    /**
     * 转换为剑指 Offer II 006. 排序数组中两个数字之和 问题
     * 对数组排序
     * a + b = c
     */
    public List<List<Integer>> threeSum2(int[] nums) {
        // 结果,
        List<List<Integer>> lists = new ArrayList<>(3);
        // 升序排序 上面set?,题目要求结果不重复,例如 -4,-1,-1,0,1,2。[-1,0,1],[-1,0,-1]就是重复的
        Arrays.sort(nums);
        // 双指针
        for (int k = 0; k < nums.length; k++) {
            // 去重k,k+1和k个元素值相同,处理1个即可,处理第k个即可
            if (k > 0 && nums[k] == nums[k - 1]) continue;

            // target=-c
            int target = 0 - nums[k];
            // 从k的下一个元素开始应用双指针
            int i = k + 1;
            int j = nums.length - 1;
            while (i < j) {
                int sum = nums[i] + nums[j];
                if (sum == target) {
                    // asList(T... a) 传入可变参数,变长参数
                    lists.add(Arrays.asList(nums[k], nums[i], nums[j]));
                    // 去重,要求a+b+c=0, a b c都不相同
                    while (i < j && nums[i] == nums[++i]) ;
                    while (i < j && nums[j] == nums[--j]) ;
                } else if (sum < target) i++;
                else j--;
            }
        }

        return lists;
    }

    public static void main(String[] args) {
        Solution7 solution7 = new Solution7();
        System.out.println(solution7.threeSum2(new int[]{-1, 0, 1, 2, -1, -4}));
    }
}

参考

作者:tangweiqun
链接:https://leetcode.cn/problems/1fGaJU/solution/jian-dan-yi-dong-javac-pythonjs-san-shu-nu6el/
来源:力扣(LeetCode)

最后

以上就是会撒娇超短裙为你收集整理的leetcode/数组中和为0的三个不同数代码参考的全部内容,希望文章能够帮你解决leetcode/数组中和为0的三个不同数代码参考所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

相关文章

评论列表共有 0 条评论

立即
投稿
返回
顶部