Open In App

Javascript Program to Merge 3 Sorted Arrays

Last Updated : 27 Apr, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Given 3 arrays (A, B, C) which are sorted in ascending order, we are required to merge them together in ascending order and output the array D. 

Examples: 

Input : A = [1, 2, 3, 4, 5] 
        B = [2, 3, 4]
        C = [4, 5, 6, 7]
Output : D = [1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 7]

Input : A = [1, 2, 3, 5]
        B = [6, 7, 8, 9 ]
        C = [10, 11, 12]
Output: D = [1, 2, 3, 5, 6, 7, 8, 9. 10, 11, 12]

Method 1 (Two Arrays at a time) 
We have discussed at Merging 2 Sorted arrays . So we can first merge two arrays and then merge the resultant with the third array. Time Complexity for merging two arrays O(m+n). So for merging the third array, the time complexity will become O(m+n+o). Note that this is indeed the best time complexity that can be achieved for this problem. 
Space Complexity: Since we merge two arrays at a time, we need another array to store the result of the first merge. This raises the space complexity to O(m+n). Note that space required to hold the result of 3 arrays is ignored while calculating complexity. 

Algorithm 

function merge(A, B)
    Let m and n be the sizes of A and B
    Let D be the array to store result
   
    // Merge by taking smaller element from A and B
    while i < m and j < n
        if A[i] <= B[j]
            Add A[i] to D and increment i by 1
        else Add B[j] to D and increment j by 1

    // If array A has exhausted, put elements from B
    while j < n
        Add B[j] to D and increment j by 1
   
    // If array B has exhausted, put elements from A
    while i < n
        Add A[j] to D and increment i by 1
   
    Return D

function merge_three(A, B, C)
    T = merge(A, B)
    return merge(T, C)

The Implementations are given below

Javascript




<script>
// Javascript program to merge three sorted arrays
// by merging two at a time.
 
 
 
 
function mergeTwo(A, B)
{
    // Get sizes of vectors
    let m = A.length;
    let n = B.length;
 
    // Vector for storing Result
    let D = [];
 
    let i = 0, j = 0;
    while (i < m && j < n) {
 
        if (A[i] <= B[j])
            D.push(A[i++]);
        else
            D.push(B[j++]);
    }
 
    // B has exhausted
    while (i < m)
        D.push(A[i++]);
 
    // A has exhausted
    while (j < n)
        D.push(B[j++]);
 
    return D;
}
 
// Driver Code
 
    let A = [ 1, 2, 3, 5 ];
    let B = [ 6, 7, 8, 9 ];
    let C = [ 10, 11, 12 ];
 
    // First Merge A and B
    let T = mergeTwo(A, B);
 
    // Print Result after merging T with C
    document.write(mergeTwo(T, C));
</script>


Output: 
 

[1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12]

Method 2 (Three arrays at a time) 
The Space complexity of method 1 can be improved we merge the three arrays together. 
 

function merge-three(A, B, C)
    Let m, n, o be size of A, B, and C
    Let D be the array to store the result
    
    // Merge three arrays at the same time
    while i < m and j < n and k < o
        Get minimum of A[i], B[j], C[i]
        if the minimum is from A, add it to 
           D and advance i
        else if the minimum is from B add it 
                to D and advance j
        else if the minimum is from C add it 
                to D and advance k
    
   // After above step at least 1 array has 
   // exhausted. Only C has exhausted
   while i < m and j < n
       put minimum of A[i] and B[j] into D
       Advance i if minimum is from A else advance j 
   
   // Only B has exhausted
   while i < m and k < o
       Put minimum of A[i] and C[k] into D
       Advance i if minimum is from A else advance k
 
   // Only A has exhausted
   while j < n and k < o
       Put minimum of B[j] and C[k] into D
       Advance j if minimum is from B else advance k

   // After above steps at least 2 arrays have 
   // exhausted
   if A and B have exhausted take elements from C
   if B and C have exhausted take elements from A
   if A and C have exhausted take elements from B
   
   return D

Complexity: The Time Complexity is O(m+n+o) since we process each element from the three arrays once. We only need one array to store the result of merging and so ignoring this array, the space complexity is O(1).

 Implementation of the algorithm is given below:

Javascript




<script>
// Javascript program to merger three sorted arrays
// by merging three simultaneously.
function printVector(a) {
    document.write("[");
    for (let e of a) {
        document.write(e + " ");
    }
    document.write("]" + "<br>");
}
 
function mergeThree(A, B, C)
{
    let m, n, o, i, j, k;
     
    // Get Sizes of three vectors
    m = A.length;
    n = B.length;
    o = C.length;
 
    // Vector for storing output
    let D = [];
    i = j = k = 0;
    while (i < m && j < n && k < o)
    {
 
        // Get minimum of a, b, c
        let m = Math.min(Math.min(A[i], B[j]), C[k]);
 
        // Put m in D
        D.push(m);
 
        // Increment i, j, k
        if (m == A[i])
            i++;
        else if (m == B[j])
            j++;
        else
            k++;
    }
 
    // C has exhausted
    while (i < m && j < n) {
        if (A[i] <= B[j]) {
            D.push(A[i]);
            i++;
        }
        else {
            D.push(B[j]);
            j++;
        }
    }
 
    // B has exhausted
    while (i < m && k < o) {
        if (A[i] <= C[k]) {
            D.push(A[i]);
            i++;
        }
        else {
            D.push(C[k]);
            k++;
        }
    }
 
    // A has exhausted
    while (j < n && k < o) {
        if (B[j] <= C[k]) {
            D.push(B[j]);
            j++;
        }
        else {
            D.push(C[k]);
            k++;
        }
    }
 
    // A and B have exhausted
    while (k < o)
        D.push(C[k++]);
 
    // B and C have exhausted
    while (i < m)
        D.push(A[i++]);
 
    // A and C have exhausted
    while (j < n)
        D.push(B[j++]);
 
    return D;
}
 
// Driver Code
 
let A = [1, 2, 41, 52, 84];
let B = [1, 2, 41, 52, 67];
let C = [1, 2, 41, 52, 67, 85];
 
// Print Result
printVector(mergeThree(A, B, C));
 
// This code is contributed by gfgking.
</script>


Note: While it is relatively easy to implement direct procedures to merge two or three arrays, the process becomes cumbersome if we want to merge 4 or more arrays. In such cases, we should follow the procedure shown in Merge K Sorted Arrays .
Another Approach (Without caring about the exhausting array):
The code written above can be shortened by the below code. Here we do not need to write code if any array gets exhausted.

Below is the implementation of the above approach:

Javascript




<script>
// Javascript program to merger three sorted arrays
// Without caring about the exhausting array
 
function printVector(a) {
    document.write("[");
    for (let e of a) {
        document.write(e + " ");
    }
    document.write("]" + "<br>");
}
 
// A[], B[], C[]: input arrays
// Function to merge three sorted lists into a single
// list.
function merge3sorted(A, B, C)
{
    let ans = [];
     
    // Get Sizes of three vectors
    let l1 = A.length;
    let l2 = B.length;
    let l3 = C.length;
 
    let i = 0;
    let j = 0;
    let k = 0;
 
    while (i < l1 || j < l2 || k < l3)
    {
        // Assigning a, b, c with max values so that if
        // any value is not present then also we can sort
        // the array.
         
        let a = Number.MAX_SAFE_INTEGER;
        let b = Number.MAX_SAFE_INTEGER;
        let c = Number.MAX_SAFE_INTEGER;
         
        // a, b, c variables are assigned only if the
        // value exist in the array.
            if (i < l1)
                a = A[i];
            if (j < l2)
                b = B[j];
            if (k < l3)
                c = C[k];
         
        // Checking if 'a' is the minimum
            if (a <= b && a <= c) {
                ans.push(a);
                i++;
            }
            // Checking if 'b' is the minimum
            if (b <= a && b <= c) {
                ans.push(b);
                j++;
            }
            // Checking if 'c' is the minimum
            if (c <= a && c <= b) {
                ans.push(c);
                k++;
            }
    }
    return ans;
}
 
// Driver Code
 
let A = [1, 2, 41, 52, 84];
let B = [1, 2, 41, 52, 67];
let C = [1, 2, 41, 52, 67, 85];
 
let final_ans = merge3sorted(A, B, C);
// Print Result
printVector(final_ans);
 
// This code is contributed by Pushpesh Raj
</script>


Time Complexity: O(m+n+o) where m, n, o are the lengths of the 1st, 2nd, and 3rd arrays.

Space Complexity:  O(m+n+o) where m, n, o are the lengths of the 1st, 2nd, and 3rd arrays.  Space used for the output array.

Please refer complete article on Merge 3 Sorted Arrays for more details!



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads