Errata, First Printing (June 2016)
CHAPTER 1
p. 44, figure
Printed: | Dragon curve figure on wrong page|
Fixed: | Move to page 49 (Exercise 1.2.35) |
p. 110/b>
Reported by Kevin Wayne, 10-Sep-16.
Printed: the row vector has n elements
Fixed: the column vector has n elements
p. 110/b>
Reported by Kevin Wayne, 10-Sep-16.
Printed: the column vector has m elements
Fixed: the row vector has m elements
CHAPTER 2
p. 195, figure
Printed: | The trace starts with i = 1 |
Fixed: | It should start with i = 0 |
p. 227, figure
Printed: | python gaussiantable.py 1019 209 |
Fixed: | java SAT 1019 209 |
p. 230
Printed: | In our example, Gaussian is a client of SAT |
Fixed: | In our example, SAT is a client of Gaussian |
p. 286
Printed: | We start with opt[m][n] = 1. |
Fixed: | We start with opt[m][n]. |
p. 305, figure
Printed: | Vertical percolation calculation: the first arrow at the top points to a non-full site |
Fixed: | remove the arrow |
CHAPTER 3
p. 333, figure
Printed: | s1 = new String("Hello, World") |
Fixed: | s = new String("Hello, World") |
p. 406, first table
Printed: | −2i + (1 + i) |
Fixed: | 2i + (1 + i) |
CHAPTER 4
No errata reported at this time.
CHAPTER 5
p. 721
Printed: | CCC is listed as not an amino acid encoding |
Fixed: | replace with TAG, a stop codon |
CHAPTER 6
p. 893
Printed: | StdOut.println("Exponent: " + exp) |
Fixed: | StdOut.println("Exponent: " + exponent) |
p. 893, figure
Printed: | ((t & 80000000) == 1) |
Fixed: | ((t >> 31) & 1 == 1) |
p. 915
Printed: | 20: 8A15 |
Fixed: | 10: 8A15 |
p. 967, Program 6.4.1
Printed: | PC = (PC + 1) & 0XFF |
Fixed: | PC = (PC + 1) & 0xFF |
CHAPTER 7
No errata reported at this time.
APPENDIX
No errata reported at this time.