LeetCode——三数之和
Posted 哈哈呵呵呃呃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode——三数之和相关的知识,希望对你有一定的参考价值。
public List<List<Integer>> threeSum(int[] nums) { List<List<Integer>> result = new ArrayList<>(); if(nums.length < 3)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]) //去重 { int start = i + 1; int end = nums.length - 1; while(start < end) { int cur = nums[i] + nums[start] + nums[end]; if(cur == 0 ) { List<Integer> list = new ArrayList<>(); list.add(nums[i]); list.add(nums[start]); list.add(nums[end]); result.add(list); start++; end--; while(start < end && nums[start] == nums[start -1]) //去重 { start++; } while(start < end && nums[end] == nums[end+1]) //去重 { end--; } } else if(cur < 0) { start++; } else { end--; } } } } return result; }
以上是关于LeetCode——三数之和的主要内容,如果未能解决你的问题,请参考以下文章