1
vote
Writing A “Conway’s Game of Life” Program
If you wanted to be super simple about it, you could take your favorite graphics API and have each pixel represent a single cell. That takes away all of the difficulties of GUI programming, though …
4
votes
What are some good resources for learning threaded programming?
I've honestly never read it myself, but Concurrent Programming in Java is a book I've heard recommended by several p …
0
votes
Best self-balancing BST for quick insertion of a large number of nodes
The two self-balancing BSTs I'm most familiar with are red-black and AVL, so I can't say for certain if any other solutions are better, but as I recall, red-black has faster insertion and slower re …
23
votes
What is tail-recursion?
In traditional recursion, the typical model is that you perform your recursive calls first, and then you take the return value of the recursive call and calculate the result. In this manner, you do …
