Open In App

Javascript Program to Find a triplet such that sum of two equals to third element

Given an array of integers, you have to find three numbers such that the sum of two elements equals the third element.
Examples:

Input: {5, 32, 1, 7, 10, 50, 19, 21, 2}
Output: 21, 2, 19

Input: {5, 32, 1, 7, 10, 50, 19, 21, 0}
Output: no such triplet exist

Question source: Arcesium Interview Experience | Set 7 (On campus for Internship)



Simple approach: Run three loops and check if there exists a triplet such that sum of two elements equals the third element.
Time complexity: O(n^3)
Efficient approach: The idea is similar to Find a triplet that sum to a given value.

Below image is a dry run of the above approach:



Below is the implementation of the above approach:




<script>
// Javascript program to find three numbers
// such that sum of two makes the
// third element in array
 
// Utility function for finding
// triplet in array
function findTriplet(arr, n)
{
    // Sort the array
    arr.sort((a,b) => a-b);
 
    // For every element in arr check
    // if a pair exist(in array) whose
    // sum is equal to arr element
    for (let i = n - 1; i >= 0; i--)
    {
        let j = 0;
        let k = i - 1;
 
        // Iterate forward and backward to
        // find the other two elements
        while (j < k)
        {
            // If the two elements sum is
            // equal to the third element
            if (arr[i] == arr[j] + arr[k])
            {
                // Pair found
                document.write("numbers are " + arr[i] +
                               " " + arr[j] + " " +
                               arr[k] + "<br>");
                return;
            }
 
            // If the element is greater than
            // sum of both the elements, then try
            // adding a smaller number to reach the
            // equality
            else if (arr[i] > arr[j] + arr[k])
                j += 1;
 
            // If the element is smaller, then
            // try with a smaller number
            // to reach equality, so decrease K
            else
                k -= 1;
        }
    }
 
    // No such triplet is found in array
    document.write("No such triplet exists");
}
 
// Driver code
let arr = [5, 32, 1, 7, 10, 50, 19, 21, 2];
let n = arr.length;
findTriplet(arr, n);
// This code is contributed by Mayank Tyagi
</script>

Output:  

numbers are 21 2 19

Time complexity: O(N^2)

Space Complexity: O(1) as no extra space has been used.

Another Approach: The idea is similar to previous approach.

  1. Sort the given array.
  2. Start a nested loop, fixing the first element i(from 0 to n-1) and moving the other one j (from i+1 to n-1).
  3. Take the sum of both the elements and search it in the remaining array using Binary Search.




<script>
// Javascript program to find three numbers
// such that sum of two makes the
// third element in array
 
bool search(sum, start, end, arr)
{
    while (start <= end)
    {
        let mid = (start + end) / 2;
        if (arr[mid] == sum)
        {
            return true;
        }
        else if (arr[mid] > sum)
        {
            end = mid - 1;
        }
        else
        {
            start = mid + 1;
        }
    }
    return false;
}
 
// Utility function for finding
// triplet in array
function findTriplet(arr, n)
{
    // Sort the array
    arr.sort((a,b) => a-b);
 
    // Initialising nested loops
    for (let i = 0; i < n; i++)
    {
        for (let j = i + 1; j < n; j++)
        {
            if (search((arr[i] + arr[j]),
                j, n - 1, arr))
            {
                document.write("numbers are " + arr[i] +
                               " " + arr[j] + " " +
                              ( arr[i] + arr[j] ) + "<br>");
            }
        }
    }
    // No such triplet is found in array
    document.write("No such triplet exists");
}
 
// Driver code
let arr = [5, 32, 1, 7, 10, 50, 19, 21, 2];
let n = arr.length;
findTriplet(arr, n);
</script>
// This code is contributed by Sarthak Delori

Time Complexity: O(N^2*log N)

Space Complexity:  O(1)

Please refer complete article on Find a triplet such that sum of two equals to third element for more details!


Article Tags :