三数之和

257 阅读1分钟

给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。

注意:答案中不可以包含重复的三元组。

例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],

满足要求的三元组集合为:
[
  [-1, 0, 1],
  [-1, -1, 2]
]

解题思路: 因为题目要求不能包含重复的三元组,所以我们需要先对数组进行排序,然后用三个下标遍历数组 , i 从 0 到 数组长度-3 , j 从 i + 1开始 , k每次都要从数组的最后一个元素开始遍历,否则会缺少结果

class Solution {
  public List<List<Integer>> threeSum(int[] nums) {
  List<List<Integer>> res = new ArrayList<>();
        Arrays.sort( nums );
        int i = 0 , j = 0 ;
        for( ; i < nums.length - 2 ; i++ ){
            j = i + 1 ;
            int k = nums.length - 1;
            while( j < k ){
                if( -nums[k]  == nums[i] + nums[j] ){
                    List< Integer > list = new ArrayList<>();
                    list.add( nums[ i ] );
                    list.add( nums[ j ] );
                    list.add( nums[ k ] );
                    res.add( list );
                    j++;
                    while( j < k && nums[ j ] == nums[ j -1 ]) j++;
                    k--;
                }else if( -nums[k]  < nums[i] + nums[j]  ){
                    k--;
                }else{
                    j++;
                }
            }

            while( i < nums.length -2 && nums[ i ] == nums[ i + 1 ]) i++;
        }
        return res;
  }
}