wutiejun / workspace

My workspace.
7 stars 3 forks source link

[Introduction to Algorithm]Insertion Sort #31

Open wutiejun opened 7 years ago

wutiejun commented 7 years ago

INSERTION-SORT(A)

for j = 2 to A.length
    key = A[j]
    // Insert A[j] into the sorted sequence A[1..j-1].
    i = j -1 
    while i > 0 and A[i] > key
        A[i+1] = A[i]
        i = i -1
    A[i+1] = key