Misc,

INSERTION SORT is O(n log n)

, , and .
(?)

Abstract

Traditional INSERTION SORT runs in O(n 2) time because each insertion takes O(n) time. When people run INSERTION SORT in the physical world, they leave gaps between items to accelerate insertions. Gaps help in computers as well. This paper shows that GAPPED INSERTION SORT has insertion times of O(log n) with high probability, yielding a total running time of O(n log n) with high probability. 1.

Tags

Users

  • @lenz

Comments and Reviews