Tagged Questions
The knuth tag has no wiki summary.
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(^^).
...
15
votes
14answers
3k views
Are the Donald Knuth books worth buying [closed]
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 in the gaps? Or as ...
13
votes
11answers
2k views
C for loop implemented differently than other languages?
I read the following in a review of Knuth's "The Art of Computer Programming":
"The very 'practicality' means that the would-be CS major has to learn Kernighan's mistakes in designing C, notably the ...
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
395 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 ...
6
votes
5answers
2k 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 Mathematics but it's a ...
6
votes
6answers
2k 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 you want to compute ...
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
5answers
440 views
generating poisson variables in c++
I implemented this function to generate a poisson random variable
typedef long unsigned int luint;
luint poisson(luint lambda) {
double L = exp(-double(lambda));
luint k = 0;
double p = ...
4
votes
1answer
253 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 different ...
4
votes
2answers
202 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 in Windows?
3
votes
0answers
277 views
Is there a reason for which Donald Knuth choose procedural programming instead of functional programming? [closed]
Donald Knuth's Art of Computer Programming Series uses his own procedural assembly languaged called MIX. Now, the question becomes: should Knuth have used a functional language to describe his ...
3
votes
4answers
1k 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 generation). I just want ...
3
votes
1answer
316 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
177 views
Which edition of Art of Computer Programming should I buy?
I want to purchase Knuth's Art of Computer Programming but I'm unsure of which edition to buy. What's the latest edition? Should I go with the latest edition or is another edition better?
2
votes
2answers
219 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 decade or so, ...
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
1answer
54 views
ctwill - mini indexes for cweb
where can i download ctwill? The ftp.cs.stanford.edu/pub/ctwill/ site doesn't work for me, either is ftp://labrea.stanford.edu/pub/ctwill/.
Thanks,
Raoul
1
vote
4answers
1k 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 can I make more than ...
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
0answers
56 views
Knuths multiprecision algorithm exercise [closed]
I'm following Knuths multiprecision algorithm from volume 2 of the art of comp. prog. Since I dont have the book with me I wrote down a bunch of stuff so I could work on it. But now I realise that he ...
0
votes
2answers
67 views
minimal cyclic sub string in a bigger cyclic string
I am trying to find an algorithm that culd return the length of the shortest cyclic sub string in a larger cyclic string.
A cyclic string would be defined as a concatenation of tow or more identicle ...
0
votes
1answer
100 views
How do I change the H sequence in this shell sort?
I'd like to be able to modify this code so that it uses Knuth's H sequence instead of this one. If anyone could help, I'd greatly appreciate it.
public class ShellSort {
static int iterations = ...
0
votes
1answer
248 views
Help fix my KMP search algorithm
Hello I am trying to write a C# version of KMP search from Algorithms in C book.
Having trouble finding the flaw in my algorithm. Would someone help?
static int KMP(string p, string str) {
int m ...
0
votes
3answers
415 views
Knuth Permutation Algorithm Weird behaviour
I have attached a code which gives weird outputs basing on cout statements. This program essentially computes the Knuth's Permutations.
Input is say: run1
The code runs for first pass fine:
Call ...