Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,880 questions

51,806 answers

573 users

How implement merge sort algorithm in Node.js

1 Answer

0 votes
function merge(left, right) {
    let arr = [];
  
    while (left.length && right.length) {
        if (left[0] < right [0]) {
            arr.push(left.shift())
        } else {
            arr.push(right.shift())
        }
    }
  
    return [...arr,...left,...right];
}
  
function mergeSort(arr, halflength = arr.length / 2) {
    if (arr.length < 2) {
        return arr
    }
  
    const left = arr.splice(0, halflength); 
  
    return merge(mergeSort(left), mergeSort(arr))
}
  
let arr = [10, 8, 5, 4, 0, 3, 6, 2, 7, 1, 9];
  
console.log(mergeSort(arr));
  
  
    
      
      
/*
run:
      
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

*/

 



answered Jan 17, 2022 by avibootz

Related questions

1 answer 182 views
2 answers 185 views
1 answer 182 views
1 answer 154 views
1 answer 94 views
...