Tag Archive: Algorithms

Jun
10

Express the function n3/1000 – 100n2 – 100n + 3 in terms of ?-notation.

I guess the answer is ?(n^3). We always mention the highest order of the equation and we ignore the constants associated with the equation.

Jun
10

Insertion Sort

I wanted to write on Algorithms for a long time and here i got a chance to write on them; Today I am going to post on Insertion sort. Insertion sort is a simple sorting algorithm, a comparison sort in which the sorted array (or list) is built one entry at a time. It is …

Continue reading »