Tag: javascript algorithms and data structures

  • Javascript Merge Sort Algorithm [Tutorial]

    How to write a merge sort algorithm in Javascript? What IS a merge sort algorithm? We go over all these questions and more in this tutorial using vanilla javascript! Merge Sort is an algorithm that has a time complexity of O(nlogn) and is incredibly handy to have in your toolbox. The idea behind this algorithm…