Comparison of sorting algoritms

Which sorting algorithm makes minimum number of memory write ?

Compare Asymptotic Complexities

Arrange the below functions in the increasing order of their asymptotic complexity: A(n) = 2n B(n) = n3/2 C(n) = n * lg(n) D(n) = […]