Errata, Chapter 1
p. 48
| Printed: | if (x > y) { int t = x; y = x; x = t; } |
| Fixed: | if (x > y) { int t = x; x = y; y = t; } |
p. 48
| Printed: | if (x > y) { int t = x; y = x; x = t; } |
| Fixed: | if (x > y) { int t = x; x = y; y = t; } |
Copyright © 2007 Robert Sedgewick and Kevin Wayne. All rights reserved.