3Sum Leetcode
Posted 璨璨要好好学习
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3Sum Leetcode相关的知识,希望对你有一定的参考价值。
Given an array S of n integers, are there elements a, b, c 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] ]
这道题思路会了就很好写。。。但是我一开始总是执着于两边加和然后从中间找第三个值。。。
可以试着反思路。。。经典题目,回顾一下吧。
学习一下Arrays.asList()的用法。
public class Solution { public List<List<Integer>> threeSum(int[] nums) { List<List<Integer>> result = new ArrayList<>(); if (nums == null || nums.length == 0) { return result; } Arrays.sort(nums); for (int i = 0; i < nums.length - 2; i++) { if (nums[i] > 0) { break; } if (i > 0 && nums[i] == nums[i - 1]) { continue; } int start = i + 1; int end = nums.length - 1; int target = 0 - nums[i]; while (start < end) { int tmp = nums[start] + nums[end]; if (tmp > target){ end--; } else if (tmp < target) { start++; } else { result.add(Arrays.asList(nums[i], nums[start], nums[end])); while (start < end && nums[start] == nums[start + 1]) { start++; } while (start < end && nums[end] == nums[end - 1]) { end--; } start++; end--; } } } return result; } }
以上是关于3Sum Leetcode的主要内容,如果未能解决你的问题,请参考以下文章