algorithms
algorithms copied to clipboard
[Oops.] Missing right-square-bracket in LISBigger pseudocode
Please verify that the error is present in the most recent revision before reporting.
Chapter number or note title: Error in Chapter 2, Section 2.6
Page number: Error at the top of page 88
Error description:
Line 4 of the pseudocode for the LISBigger algorithm appears like so:
return LISbigger(prev,A[2..n)
Suggested fix (if any): The line should appear:
return LISbigger(prev,A[2..n])
Note the addition of the right-square-brace at the penultimate character.