Tag Archives: Selection sort

Computer 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 exotic name or because it … Continue reading

Posted in algorithms | Tagged , , , , , , , , , , , , , , , , , | 4 Comments

Computer Algorithms: Insertion Sort

Overview Sorted data can dramatically change the speed of our program, therefore sorting algorithms are something quite special in computer science. For instance searching in a sorted list is faster than searching in an unordered list. There are two main … Continue reading

Posted in algorithms, PHP | Tagged , , , , , , , , , , , , , , , , | 1 Comment