Tagged Questions

The Art of Computer Programming (acronym: TAOCP) is a comprehensive monograph written by Donald Knuth that covers many kinds of programming algorithms and their analysis.

learn more… | top users | synonyms

41
votes
8answers
3k views

The Art of Computer Programming - What Can I Get From Reading the Lot? [closed]

I am seriously considering actually reading through the whole Art of Computer Programming by Don Knuth. Though I know not many people actually manage to do this, and it's a ridiculously huge task to ...
28
votes
28answers
7k views

How many people actually read “The Art Of Computer Programming” books? [closed]

"TAOCP book is one of the must-reading CS books." I read such a statement so many times but I never see person who read and study over the book. Maybe the book itself makes our job more secure(^^). ...
19
votes
4answers
346 views

Is (pure) functional programming antagonistic with “algorithm classics”?

The classic algorithm books (TAOCP, CLR) (and not so classic ones, such as the fxtbook)are full of imperative algorithms. This is most obvious with algorithms whose implementation is heavily based ...
9
votes
5answers
2k views

Advice on how to approach The Art of Computer Programming?

Any advice on how to appoach The Art of Computer Programming Vol 1? I currently have Volume 1 with me. Should I go through the Math part fully before getting in to the Data Structures part?
7
votes
3answers
394 views

What are the enduring properties of a book on algorithms?

I will soon start writing a book on a certain subset of algorithms. Many people, including myself, praise The Art of Computer Programming to the top of their lungs, believing these volumes are a work ...
5
votes
4answers
608 views

Which version of Art of Computer Programming should I read and when?

I want to read Art of Computer Programming by Donald Knuth for various personal and professional reasons. So when I walk into the book store I see a couple volumes a couple versions and a whole bunch ...
5
votes
3answers
1k views

The Art of Computer Programming exercise question: Chapter 1, Question 8

I'm doing the exercises to TAOCP Volume 1 Edition 3 and have trouble understanding the syntax used in the answer to the following exercise. Chapter 1 Exercise 8 Computing the greatest common divisor ...
4
votes
3answers
520 views

What Math Do You Need To Read The Art Of Computer Programming?

I came to a career in software development with a degree in English, rather than Computer Science or another science/engineering background. I have gone a long way on my self-taught basis, but after ...
4
votes
4answers
667 views

Art of Computer programming notation question

I'm just starting to read TAOCP Volume 1 and I'm having trouble understanding the style. Knuth mentions a computational method to be a quadruple (Q,I, Omega, f) -- but I am having trouble ...
3
votes
1answer
204 views

About an exercise appearing in TAOCP volume one's “Notes on the Exercises”

There is a question in TAOCP vol 1, in "Notes on Exercises" section, which goes something like: "Prove that 13^3 = 2197. Generalize your answer. (This is a horrible kind of problem that the author ...
3
votes
1answer
315 views

How does division work in MIX?

Can someone explain to me how division in MIX (from TAOCP by Knuth) works on a byte-to-byte basis? rA = |-| . . . .0| rX = |+|1235|0|3|1| The memory location 1000 contains |-|0|0|0|2|0|. When ...
2
votes
1answer
632 views

Gaussian random number generator

I'm trying to implement a gaussian distributed random number generator in the interval [0,1]. float rand_gauss (void) { float v1,v2,s; do { v1 = 2.0 * ((float) rand()/RAND_MAX) - 1; v2 = ...
2
votes
1answer
98 views

The disjoint set in TAOCP

I want to know if Donald Knuth has covered the disjoint set in his great book ? If so, which chapter is it? Best Regards,
2
votes
5answers
315 views

Oriented forest TAoCP - Algorithm in python

I try to implement Algorithm O (Oriented forests) from Donald E. Knuth: 'The Art of Computer Programming - Volume 4, Fascile 4, Generating All Trees' on page 24. My Python solution is: def ...
2
votes
3answers
1k views

Best preparation material for TAOCP? [closed]

There are apparently a lot of people who don't finish reading TAOCP. One thing I've consistently noted in people's responses is being unable to handle all of the math in the series. What books or ...
1
vote
2answers
124 views

Which volume of TAOCP should I start with?

I have decided to go through "The Art Of Computer Programming" series by Sir Donald Knuth. Based on your experience, please suggest which volume would be a good one to start with, as in an easier one ...
1
vote
1answer
43 views

Printing a number contained in a register

I'm learning MMIX so I tried making a simple program to add one to itself and print the result. Unfortunately it doesn't print anything. Here is my program: n IS $4 y IS $3 t IS $255 ...
1
vote
1answer
137 views

taocp, sequential allocation questions

i've run into few problems while working tacop 2.2.2 sequential allocations, repacking memory section at page 247. the subject is there are n stacks sharing a common area locations L0 < L < ...
1
vote
2answers
504 views

The Art of Computer Programming, Vol 4, Fascicle 2 typo?

At the bottom of page 5 is the phrase "changes k to k ⊕ (1j+1)2". Isn't 1 to any power still 1 even in binary? I'm thinking this must be a typo. I sent an email to Dr. Knuth to report this, but ...
0
votes
1answer
54 views

upper bounds of the running time of b-tree

In the Art of Computer Programming, on the bottom of page 485 Suppose there's a B-tree of order m, and there are N keys, so the N+1 leaves appear on level l. The numbers of nodes on levels ...