Skip to main content

LeetCode Problem #15. 3Sum


Problem statement Given an array nums of n integers, are there elements a, b, c in nums 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.

Example :

Given array nums = [-1, 0, 1, 2, -1, -4],

A solution set is:
[
  [-1, 0, 1],
  [-1, -1, 2]
]
this problem is medium but I think it is much harder especially with the condition of non duplicate,  I'll write two solutions 
#First Solution
We want to find all triplets  (a,b,c)  such that  a+b+c=0 . In other words,  c=−(a+b) . The most straightforward  O(n^2)  solution is to enumerate all  (a,b)  pairs and check if the value  c  exists in the array, using a hash table. However, we can achieve a O(n^2) solution without extra data structures .
  1. Lets sort the given v array in ascending order. For all triplets (i,j,k),i < j < k , we have v[i] ≤ v[j] ≤ v[k] .
  2. If we enumerate all pairs (i,j),i < j , the corresponding sum for a fixed i is non-decreasing: v[i] + v[j] ≤ v[i] + v[j+1] ≤ v[i] + v[j+2] ≤ … ≤ v[i] + v[n] .
  3. Conversely, −(v[i] + v[j]) ≥ −(v[i] + v[j+1]) ≥ −(v[i] + v[j+2])...≥ −(v[i] + v[n]) .
  4. This means that for a fixed i, if we check all values j, such that i < j ≤ n , in increasing order, the index k corresponding to c, is decreasing. So, we can initialize an index k to the last position of the array and always decrease it when looking for a suitable value c.
  5. To ignore duplicates, note that we never want to consider consecutive indices i or j with the same value.
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer>> result = new LinkedList<List<Integer>>();
Arrays.sort(nums);
for (int i = 0; i < nums.length; i++) {
if (i > 0 && nums[i] == nums[i - 1]) {
continue;
}
int k = nums.length - 1;
for (int j = i + 1; j < nums.length; j++) {
while (nums[j] + nums[k] + nums[i] > 0 && k > j)
k--;
if (j> i+1 && nums[j] == nums[j - 1] ) continue;
if (k > j && nums[j] + nums[k] + nums[i] == 0) {
result.add(Arrays.asList(nums[i], nums[j], nums[k]));
}
}
}
return result;
}
view raw 3SumV1.Java hosted with ❤ by GitHub
#Second Solution
the previous solution is good but its performance is not the best, we can optimize the performance by replacing for loops with while loop.
we know we need to find triplets (a,b,c) we already have a = nums[i] we can now slove 3Sums with 2Sums problem, we need to find b & c 
where b is greater than a, and c is greater than b.

  1. initialize low pointer low = i+1
  2. initialize high pointer high= n-1
  3. if sum (nums[i], nums[low], nums[high] == 0) this means we found a solution
  4. if sum (nums[i], nums[low], nums[high] > 0) this means we need to decrease high--
  5. if sum (nums[i], nums[low], nums[high] < 0) this means we need to increase low++
check this version of code and check performance difference.
class Solution {
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer>> result = new LinkedList<List<Integer>>();
Arrays.sort(nums);
for (int i = 0; i < nums.length-2; i++) {
if (i > 0 && nums[i] == nums[i - 1]) {
continue; // remove duplicate
}
int low = i+1;
int high = nums.length -1;
while (low < high)
{
while (nums[low] + nums[high] + nums[i] > 0 && high > low)
high--;
if (low > i+1 && nums[low] == nums[low - 1] ) {
low++;
continue;
}
if (nums[low] + nums[high] + nums[i] == 0 && high>low)
{
result.add(Arrays.asList(nums[i], nums[low], nums[high]));
}
low++;
}
}
return result;
}
}
view raw 3SumV2.Java hosted with ❤ by GitHub
Thank you,
 Ahmed Ghazey

Comments

Popular posts from this blog

DevExpress C# Chart Tutorial

Hello , this blog post about Charting in DevExpress , I faced many problems I visited hundreds of pages to solve this problems , actually it was the first time I use DevExpress Charts, Work is not like school or university , in school if you don't know thing you can learn it any time you want , in work you have to do today task yesterday, I like to share my knowledge and skills with you , I hope this Post help you . // clear series on chart  chart.Series.Clear(); // clear Titles of chart chart.Titles.Clear(); // legend alignment  chart.Legend.AlignmentHorizontal = LegendAlignmentHorizontal.Center; chart.Legend.AlignmentVertical = LegendAlignmentVertical.Bottom; chart.Legend.Direction = LegendDirection.LeftToRight; // creating series // series view Type example Line DevExpress.XtraCharts.Series series = new DevExpress.XtraCharts.Series("series name ", ViewType.Line); // add title  DevExpress.XtraCharts.ChartTitle chtTitle = new DevExpress.XtraCharts.Cha...

LeetCode Problem #19 Remove Nth Node From End of List

Solution for LeetCode Problem #19 Remove Nth Node From End of List it is linked list problem can be solved with multiple solutions, but I'm gonna solve it with fastest solution in java. Problem link we should assign dummy_head it is common while solving linked list problems  Assign 2 iterators slow and fast both equals to dummy_head we don't know the length of the list but we know it is always valid, so we will move with a window of size n+1 when we reach the end by the fast iterator the slow iterator will be in the node n+1 from the last , right? we will assign slow.next to be equal slow.next.next we are dropping the node n from last, got it? we will return dummy_head.next Thank you, AhmedG

Designing Entity Relationship Diagram (ERD)

Al Salmo Aliko . Hello, in this post I'll discuss with you how to design good Entity Relationship Diagram ERD . this article for: IT Students learning about database. you are having difficulties in creating ERD. you are developer that need help in database design.   let's ask ourselves Why good database design is good ? or why we need ERD?         when I started programming Eng / Eman Ahmed was my First teacher, she said you must write your code with pen, and now I told you good database design start with paper and pen or in technological terms start with ERD, ERD is the model which shows logical layout of your database. let's List some advantages of good database design : very low or no redundant data is stored.  supporting planed or unplanned queries. good design easy to maintain and modify. from first glance you can understand it. an ERD consist from Entities and relationships between them; there exist...