I am reading Introduction To Algorithms book and the pseudo code is

INSERTION-SORT(A)
1 for j ← 2 to length[A]
2   do key ← A[j]
3     ▹ Insert A[j] into the sorted sequence A[1  j - 1].
4     i ← j - 1
5     while i > 0 and A[i] > key
6      do A[i + 1] ← A[i]
7         i ← i - 1
8     A[i + 1] ← key

While the pseudo code on wiki is

 for j ←1 to length(A)-1
     key ← A[ j ]
     > A[ j ] is added in the sorted sequence A[0, .. j-1]
     i ← j - 1
     while i >= 0 and A [ i ] > key
         A[ i +1 ] ← A[ i ]
         i ← i -1
     A [i +1] ← key

Why does one start with 2 and loops up to length and the other starts with 1 and loops until length of A -1?

link|improve this question

FYI: You should consider accepting some of the answers to your other questions. It will encourage people to help you in the future. – jadarnel27 Sep 9 '11 at 4:06
2  
Ok, still a noob at this. I will go through and accept them. – CodeCrack Sep 9 '11 at 4:12
I'm impressed, 100% accept rate. thank you ^^ – jadarnel27 Sep 9 '11 at 12:25
feedback

2 Answers

up vote 3 down vote accepted

It looks like the first pseudocode block used 1 based indexing while the second uses 0 based indexing.

link|improve this answer
+1, indeed. Nerds on Wikipedia would use 0-based indexing =) – jadarnel27 Sep 9 '11 at 4:10
1  
I wish people would just stick to one way to do it. It makes reading examples hard sometimes. – Daniel Sep 9 '11 at 5:12
feedback

its basically the same thing, just that ones index starts @ 0 and the other @ 1. eg C# and VB, one starts @ 0 and the onther @ 1.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.