The Art of Computer Programming

Source: Wikipedia, the free encyclopedia.

The Art of Computer Programming
LC Class
QA76.75

The Art of Computer Programming (TAOCP) is a comprehensive monograph written by the computer scientist Donald Knuth presenting programming algorithms and their analysis. Volumes 1–5 are intended to represent the central core of computer programming for sequential machines.

When Knuth began the project in 1962, he originally conceived of it as a single book with twelve chapters. The first three volumes of what was then expected to be a seven-volume set were published in 1968, 1969, and 1973. Work began in earnest on Volume 4 in 1973, but was suspended in 1977 for work on typesetting prompted by the second edition of Volume 2. Writing of the final copy of Volume 4A began in longhand in 2001, and the first online pre-fascicle, 2A, appeared later in 2001.

Fascicle
2 in 2005. The hardback Volume 4A, combining Volume 4, Fascicles 0–4, was published in 2011. Volume 4, Fascicle 6 ("Satisfiability") was released in December 2015; Volume 4, Fascicle 5 ("Mathematical Preliminaries Redux; Backtracking; Dancing Links") was released in November 2019.

Volume 4B consists of material evolved from Fascicles 5 and 6.[2] The manuscript was sent to the publisher on August 1, 2022, and the volume was published in September 2022.[3] Fascicle 7, planned for Volume 4C, was the subject of Knuth's talk on August 3, 2022.[4]

History

Donald Knuth in 2005

After winning a Westinghouse Talent Search scholarship, Knuth enrolled at the Case Institute of Technology (now Case Western Reserve University), where his performance was so outstanding that the faculty voted to award him a master of science upon his completion of the bachelor's degree. During his summer vacations, Knuth was hired by the Burroughs Corporation to write compilers, earning more in his summer months than full professors did for an entire year.[5] Such exploits made Knuth a topic of discussion among the mathematics department, which included Richard S. Varga.

In January 1962, when he was a graduate student in the mathematics department at Caltech, Knuth was approached by

Caltech. With Varga's enthusiastic endorsement, the publisher accepted Knuth's expanded plans. In its expanded version, the book would be published in seven volumes, each with just one or two chapters.[7]
Due to the growth in Chapter 7, which was fewer than 100 pages of the 1965 manuscript, per Vol. 4A p. vi, the plan for Volume 4 has since expanded to include Volumes 4A, 4B, 4C, 4D, and possibly more.

In 1976, Knuth prepared a second edition of Volume 2, requiring it to be typeset again, but the style of type used in the first edition (called hot type) was no longer available. In 1977, he decided to spend some time creating something more suitable. Eight years later, he returned with TEX, which is currently used for all volumes.

The offer of a so-called Knuth reward check worth "one hexadecimal dollar" (100HEX base 16 cents, in decimal, is $2.56) for any errors found, and the correction of these errors in subsequent printings, has contributed to the highly polished and still-authoritative nature of the work, long after its first publication. Another characteristic of the volumes is the variation in the difficulty of the exercises. Knuth even has a numerical difficulty scale for rating those exercises, varying from 0 to 50, where 0 is trivial, and 50 is an open question in contemporary research.

Knuth's dedication reads:

This series of books is affectionately dedicated
to the

Case Institute of Technology,
with whom I have spent many pleasant evenings.[a]

Assembly language in the book

All examples in the books use a language called "

RISC version. Software such as GNU MDK[8] exists to provide emulation of the MIX architecture. Knuth considers the use of assembly language
necessary for the speed and memory usage of algorithms to be judged.

Critical response

Knuth was awarded the 1974 Turing Award "for his major contributions to the analysis of algorithms […], and in particular for his contributions to the 'art of computer programming' through his well-known books in a continuous series by this title."[9] American Scientist has included this work among "100 or so Books that shaped a Century of Science", referring to the twentieth century,[10]. Covers of the third edition of Volume 1 quote Bill Gates as saying, "If you think you're a really good programmer… read (Knuth's) Art of Computer Programming… You should definitely send me a résumé if you can read the whole thing."[11] The New York Times referred to it as "the profession's defining treatise".[12]

Volumes

Completed

Planned

  • Volume 4C, 4D, ...  Combinatorial Algorithms (chapters 7 & 8 released in several subvolumes)
    • Chapter 7 – Combinatorial searching (continued)
    • Chapter 8 – Recursion
  • Volume 5 – Syntactic Algorithms
  • Volume 6 – The Theory of Context-Free Languages
    • Chapter 11 – Mathematical Linguistics
  • Volume 7 – Compiler Techniques
    • Chapter 12 – Programming Language Translation

Chapter outlines

Completed

Volume 1 – Fundamental Algorithms

Volume 2 – Seminumerical Algorithms

  • Chapter 3 – Random Numbers
    • 3.1. Introduction
    • 3.2.
      Generating Uniform Random Numbers
      • 3.2.1. The Linear Congruential Method
        • 3.2.1.1. Choice of modulus
        • 3.2.1.2. Choice of multiplier
        • 3.2.1.3. Potency
      • 3.2.2. Other Methods
    • 3.3. Statistical Tests
      • 3.3.1. General Test Procedures for Studying Random Data
      • 3.3.2. Empirical Tests
      • 3.3.3. Theoretical Tests
      • 3.3.4. The Spectral Test
    • 3.4.
      Other Types of Random Quantities
      • 3.4.1. Numerical Distributions
      • 3.4.2. Random Sampling and Shuffling
    • 3.5. What Is a
      Random Sequence
      ?
    • 3.6. Summary
  • Chapter 4 – Arithmetic
    • 4.1. Positional Number Systems
    • 4.2.
      Floating Point
      Arithmetic
      • 4.2.1. Single-Precision Calculations
      • 4.2.2. Accuracy of Floating Point Arithmetic
      • 4.2.3. Double-Precision Calculations
      • 4.2.4. Distribution of Floating Point Numbers
    • 4.3. Multiple Precision Arithmetic
      • 4.3.1. The Classical Algorithms
      • 4.3.2. Modular Arithmetic
      • 4.3.3. How Fast Can We Multiply?
    • 4.4. Radix Conversion
    • 4.5. Rational Arithmetic
      • 4.5.1. Fractions
      • 4.5.2. The Greatest Common Divisor
      • 4.5.3. Analysis of Euclid's Algorithm
      • 4.5.4. Factoring into Primes
    • 4.6. Polynomial Arithmetic
      • 4.6.1. Division of Polynomials
      • 4.6.2. Factorization of Polynomials
      • 4.6.3. Evaluation of Powers (addition-chain exponentiation)
      • 4.6.4. Evaluation of Polynomials
    • 4.7. Manipulation of
      Power Series

Volume 3 – Sorting and Searching

  • Chapter 5 – Sorting
    • 5.1. Combinatorial Properties of Permutations
      • 5.1.1. Inversions
      • 5.1.2. Permutations of a Multiset
      • 5.1.3. Runs
      • 5.1.4. Tableaux and Involutions
    • 5.2. Internal sorting
      • 5.2.1. Sorting by Insertion
      • 5.2.2. Sorting by Exchanging
      • 5.2.3. Sorting by Selection
      • 5.2.4. Sorting by Merging
      • 5.2.5. Sorting by Distribution
    • 5.3. Optimum Sorting
      • 5.3.1. Minimum-Comparison Sorting
      • 5.3.2. Minimum-Comparison Merging
      • 5.3.3. Minimum-Comparison Selection
      • 5.3.4. Networks for Sorting
    • 5.4.
      External Sorting
      • 5.4.1. Multiway Merging and Replacement Selection
      • 5.4.2. The Polyphase Merge
      • 5.4.3. The Cascade Merge
      • 5.4.4. Reading Tape Backwards
      • 5.4.5. The Oscillating Sort
      • 5.4.6. Practical Considerations for Tape Merging
      • 5.4.7. External Radix Sorting
      • 5.4.8. Two-Tape Sorting
      • 5.4.9. Disks and Drums
    • 5.5. Summary, History, and Bibliography
  • Chapter 6 – Searching
    • 6.1. Sequential Searching
    • 6.2. Searching by Comparison of Keys
      • 6.2.1. Searching an Ordered Table
      • 6.2.2. Binary Tree Searching
      • 6.2.3. Balanced Trees
      • 6.2.4. Multiway Trees
    • 6.3. Digital Searching
    • 6.4. Hashing
    • 6.5. Retrieval on Secondary Keys

Volume 4A – Combinatorial Algorithms, Part 1

Volume 4B – Combinatorial Algorithms, Part 2

Planned

Volumes 4C, 4D, 4E, 4F – Combinatorial Algorithms[13]

Volume 5 – Syntactic Algorithms

Volume 6 – The Theory of Context-free Languages[14]

  • Chapter 11 – Mathematical Linguistics[15]

Volume 7 – Compiler Techniques

  • Chapter 12 – Programming Language Translation[15]

English editions

Current editions

These are the current editions in order by volume number:

Previous editions

Complete volumes

These volumes were superseded by newer editions and are in order by date.

Fascicles

Volume 4,

Fascicles
0–4 were revised and published as Volume 4A.

Volume 4, Fascicles 5–6 were revised and published as Volume 4B.

Pre-fascicles

Volume 1

Volume 4

  • Pre-fascicles 0A, 0B, and 0C
    were revised and published as Volume 4, fascicle 0.
  • Pre-fascicles 1A and 1B were revised and published as Volume 4, fascicle 1.
  • Pre-fascicles 2A and 2B were revised and published as Volume 4, fascicle 2.
  • Pre-fascicles 3A and 3B were revised and published as Volume 4, fascicle 3.
  • Pre-fascicles 4A and 4B were revised * and published as Volume 4, fascicle 4.
  • Pre-fascicles 5A, 5B, and 5C were revised and published as Volume 4, fascicle 5.
  • Pre-fascicle 6A was revised and published as Volume 4, fascicle 6.

The remaining pre-fascicles contain draft material that is set to appear in future fascicles and volumes.

See also

References

Notes

  1. ^ The dedication was worded slightly differently in the first edition.

Citations

  1. ^ "note for box 3, folder 1".
  2. .
  3. .
  4. ^ "CP 2022 All Questions Answered, July 31–August 5, 2022, Haifa, Israel".
  5. .
  6. (PDF). Current Contents. p. 8.
  7. ^ Albers, Donald J. (2008). "Donald Knuth". In Albers, Donald J.; .
  8. ^ "GNU MDK - GNU Project - Free Software Foundation". www.gnu.org. Retrieved 2022-10-23.
  9. ^ "Donald E. Knuth – A. M. Turing Award Winner". AM Turing. Retrieved 2017-01-25.
  10. ^ Morrison, Philip; Morrison, Phylis (November–December 1999). "100 or so Books that shaped a Century of Science". American Scientist. 87 (6). Sigma Xi, The Scientific Research Society. Archived from the original on 2008-08-20. Retrieved 2008-01-11.
  11. ^ Weinberger, Matt. "Bill Gates once said 'definitely send me a résumé' if you finish this fiendishly difficult book". Business Insider. Retrieved 2016-06-13.
  12. ^ Lohr, Steve (2001-12-17). "Frances E. Holberton, 84, Early Computer Programmer". The New York Times. Retrieved 2010-05-17.
  13. ^ D'Agostino, Susan (2020-04-16). "The Computer Scientist Who Can't Stop Telling Stories". Quanta Magazine. Retrieved 2023-06-26. Now 82, he's hard at work on part B of volume 4, and he anticipates that the book will have at least parts A through F.
  14. ^ "TAOCP – Future plans".
  15. ^ a b https://www-cs-faculty.stanford.edu/~knuth/brochure.pdf. {{cite web}}: Missing or empty |title= (help)
  16. ^ .

Sources

External links