Errata, Lecture Slides
Lecture 1.3, slide 9
| Printed: | if (x > y) { int t = x; y = x; x = t; } |
| Fixed: | if (x > y) { int t = x; x = y; y = t; } |
Lecture 1.3, Slide 33
| Printed: | // repeat experiment N times |
| Fixed: | // repeat experiment T times |
Lecture 1.3, slide 9
| Printed: | if (x > y) { int t = x; y = x; x = t; } |
| Fixed: | if (x > y) { int t = x; x = y; y = t; } |
Lecture 1.3, Slide 33
| Printed: | // repeat experiment N times |
| Fixed: | // repeat experiment T times |
Copyright © 2007 Robert Sedgewick and Kevin Wayne. All rights reserved.