【LeetCode从零单排】No15 3Sum
生活随笔
收集整理的這篇文章主要介紹了
【LeetCode从零单排】No15 3Sum
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目
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:
- Elements in a triplet (a,b,c) must be in non-descending order. (ie,?a?≤?b?≤?c)
- The solution set must not contain duplicate triplets.
代碼
public class Solution {public List<List<Integer>> threeSum(int[] num) {Arrays.sort(num);int a,b,c;HashSet<List<Integer>> hs=new HashSet();for(int i=0;i<=num.length-3;i++){a=num[i];for(int m=i+1,n=num.length-1; m<n;){b=num[m];c=num[n];if(-a==(b+c)){List<Integer> ls=new ArrayList<Integer>();ls.add(a);ls.add(b);ls.add(c);hs.add(ls);n--;m++;}else if(-a>(b+c)){m++;}else{n--;}}}List<List<Integer>> result=new ArrayList(hs);return result; }}代碼下載:https://github.com/jimenbian/GarvinLeetCode
/********************************
* 本文來自博客 ?“李博Garvin“
* 轉載請標明出處:http://blog.csdn.net/buptgshengod
******************************************/
總結
以上是生活随笔為你收集整理的【LeetCode从零单排】No15 3Sum的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 苹果系统修复若干办法
- 下一篇: 【LeetCode从零单排】No129