Friday Algorithms: JavaScript Bubble Sort
Bubble Sort This is one of the most slowest algorithms for sorting, but it’s extremely well known because of its easy to implement nature. However as I wrote past Fridays there are lots of sorting...
View ArticleComputer Algorithms: Bubble Sort
Overview It’s weird that bubble sort is the most famous sorting algorithm in practice since it is one of the worst approaches for data sorting. Why is bubble sort so famous? Perhaps because of its...
View ArticleAlgorithm Cheatsheet: Radix Sort
Radix sort is an elegant and fast integer-sorting algorithm as explained in the following cheatsheet. Please click on the image bellow to download the cheatsheet on PDF! Related posts: Algorithm...
View ArticlePHP and MySQL Natural Sort
Use Case Let’s say we have an array of data represented by some text followed by a number. Just like the movies from a movie series like “Mission Impossible” or “Pirates of the Carribean”. We know that...
View Article