2
Errata for Data Structures and Algorithms in Java, Sixth Edition Data Structures and Algorithms in Java, Sixth Edition by Michael T. Goodrich, Roberto Tamassia, and Michael H. Goldwasser ISBN 978-1-118-80314-1, Wiley This errata is based upon the first printing (January 2014). Chapter 7 o Page 301, Exercise R-7.17: Replace Iterator<long> with Iterator<Long> o Page 301, Exercise R-7.20: Replace java.util.Colletions.reverse with java.util.Collec tions.reverse Chapter 8 o Page 353, Exercise C-8.38: Replace "of of" with "of" Chapter 10 o Page 446, first line of second paragraph: Replace retailAll with retainAll

Data Structures

Embed Size (px)

DESCRIPTION

Data Structures

Citation preview

Page 1: Data Structures

Errata for Data Structures and Algorithms in Java, Sixth EditionData Structures and Algorithms in Java, Sixth Edition by Michael T. Goodrich, Roberto Tamassia, and Michael H. Goldwasser ISBN 978-1-118-80314-1, Wiley 

This errata is based upon the first printing (January 2014).

Chapter 7o Page 301, Exercise R-7.17:

Replace Iterator<long> with Iterator<Long>

o Page 301, Exercise R-7.20:Replace java.util.Colletions.reverse with java.util.Collections.reverse

Chapter 8o Page 353, Exercise C-8.38:

Replace "of of" with "of"

Chapter 10o Page 446, first line of second paragraph:

Replace retailAll with retainAll

o Page 452, Exercise C-10.21:Although not something that we will likely fix in this edition (so as to avoid a material change between printings), there was an unintended typo in this code fragment which drastically changes this exercise. Our intent was that line 4 should use the <= operator rather than <.

Page 2: Data Structures

o Page 453, Exercise C-10.33:In final sentence replace "Given such an implementation" with "Give such an implementation"

Chapter 13o Page 606, Exercise C-13.16:

Replace "within text T" with "starts within text T"

Chapter 14o Page 671, Line 13 of Code Fragment 14.17:

Replace forest.makeGroup(v) with forest.makeCluster(v)

o Page 679, Exercise R-14-20:Replace LAZ with LAX