|
by Brendan via Brendan Enrick on 10/9/2007 2:27:13 PM
I've just written a quick little stack implementation for use in explaining the stack data structure. It is written in C# and is not exactly a robust solution, but it works well enough. It is stubbed out with the basics of what is required to have a working stack. If you don't know how a Stack works, I also recommend reading my Simple Explanation of the Stack Data Structure. For the heck of it, since I love Generics, I decided to make this a Generic Stack. The first step is to create the Generic
... [ read more ]
|
|