Searching and Sorting Algorithms in Javascript — Part 9(Binary Search).Binary search is another search algorithm that can be very handy in some cases. It can be so much faster than linear search because, it…Sep 26, 2022Sep 26, 2022
Searching and Sorting Algorithms in Javascript — Part 8 (Linear Search).I should have started this series with searching (as the title implies) but somehow, It felt right to do the sorting algorithms first…Sep 25, 2022Sep 25, 2022
Searching and Sorting Algorithms in Javascript — Part 7 (Radix Sort).If you’ve been been following this series from part one, you must have realized that, in the end, we’re just looking for better ways to do…Sep 23, 2022Sep 23, 2022
Searching and Sorting Algorithms in Javascript — Part 6 (Quick Sort)Quick sort is one of the “more advanced” sorting algorithms out there. It is very efficient and scale well for fairly large arrays. Of all…Sep 22, 2022Sep 22, 2022
Searching and Sorting Algorithms in Javascript — Part 5 (Merge Sort).Merge sort is one of the more “Complex” sorting algorithms. As far as algorithms go, most times, the efficiency of the algorithm is…Sep 13, 2022Sep 13, 2022
Searching and Sorting Algorithms in Javascript — Part 3 (Insertion Sort).Insertion sort algorithm is another sorting algorithm that sits in the same rank with Bubble and Selection sort. I’ll tell you all about…Sep 9, 2022Sep 9, 2022
Searching and Sorting algorithms in Javascript — Part 3 (Selection Sort)Another very common sorting algorithm you should know about is the Selection Sort algorithm. It is also very easy to implement. Without…Sep 7, 2022Sep 7, 2022
Searching and Sorting Algorithms in Javascript — Part 2 (Bubble Sort).Bubble sort is one of the simplest algorithms out there. It is very easy to implement (although, not all that glitters is Gold). The aim…Sep 6, 2022Sep 6, 2022
Searching and Sorting Algorithms in Javascript — Part 1 (Intro)For the most part, sorting and searching are some of the very frequent things you encounter in your daily tasks as a software engineer (or…Sep 6, 2022Sep 6, 2022