2
votes
4answers
114 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 version …
1
vote
0answers
64 views
How does the “Man Or Boy” Knuth test work?
Can anyone explain how the Man Or Boy Test returns a value of -67?
I tried in vain to write down the result, or trace it with a debugger. Any help would be appreciated.
A list of d …
4
votes
6answers
188 views
“Concrete Mathematics” companion text? (Knuth light IOW)
I'm interested in learning more of the math behind computer science, partly so I can dip into Knuth's TAOCP without my head spinning too much.
I've tried going through Concrete Ma …
5
votes
6answers
449 views
Computing (a*b) mod c quickly for c=2^N +-1
In 32 bit integer math, basic math operations of add and multiply are computed implicitly mod 2^32, meaning your results will be the lowest order bits of the add or multiply.
If y …
1
vote
3answers
169 views
Verify Knuth shuffle algorithm is as unbiased as possible
I'm implementing a Knuth shuffle for a C++ project I'm working on. I'm trying to get the most unbiased results from my shuffle (and I'm not an expert on (pseudo)random number gener …
7
votes
13answers
835 views
Are the Donald Knuth books worth buying
As an EE turned software engineer I missed on on the computer science basics. Are the Donald Knuth "The Art of Computer Programming" books worth buying as a reference for filling …
18
votes
29answers
2k views
How many people actually read “The Art Of Computer Programming” books?
"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 j …
1
vote
2answers
103 views
Where can I find the graph of TeX’s error log?
In Donald Knuth's Literate Programming, there was if I remember correctly a graph showing the evolution of TeX's number of bugs over time. This graph has remained flat for the past …
6
votes
5answers
796 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 Struct …
1
vote
2answers
211 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 …
2
votes
2answers
65 views
What’s the best way to read code in CWEB format in Windows?
Donald Knuth has a large number of programs to read on his page. But they are mostly in a "strange" CWEB format...
What could be the best way to make them appropriately readable i …
1
vote
4answers
364 views
Unable to combine English words from letters by Ruby
I need to find all English words which can be formed from the letters in a string
sentence="Ziegler's Giant Bar"
I can make an array of letters by
sentence.split(//)
How ca …
3
votes
1answer
109 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 |-| …
6
votes
2answers
230 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 …
3
votes
3answers
530 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 gre …
