A lot of typos in the Chinese translation
2014-07-27
For example, the code in page 152:
"
HASH-SEARCH (T,k)
i=0
repeat
j=h(k,j)
if T[j]=k
return j
i=i+1
until T[j]==NIL or i==m
return NIL
"
Obviously it should be j=h(k,i) instead of j=h(k,j) at here. Similarly at page 164, the Chinese translation of the explanation of "TREE-SUCCESSOR" is simply too confusing and wrong. The interested reader should read the English version instead.