AkiVaMu Just tiny things come to mind...

Posts related to Algorithm


Play with floating point number

Represent a fraction number in binary

more...

Sorting algorithms

This article will summarize about sorting algorithms, how they were named, and why use one over another.
Full information is in wikipedia already.
All opinions below are based on the simplest implementation of these sorting algorithms. There are many improved versions e.g. in-place Merge Sort, Quick Sort with O(NlogN) worst-caseā€¦, which are not mentioned here.

more...

Big O notation overview by example

This is great article of basic things about big O notation. Big O notation is used for describing the complexity of algorithm, or the cost of doing something in worst case. Just want to sum up here.

more...