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; }
Reported by Oliver Kullmann, 24-Sep-09.