Isn\'t Insertion sort O(n^2) > Quicksort O(n log n)...so for a small n, won\'t the relation be the same?
O(n^2)
O(n log n)
How about binary insertion sort? You can absolutely search the position to swap by using binary search.