Does anybody know where I can find an example of a Spaghetti stack written in C?
|
1
|
|||||||
|
|
|
It should be something similar to that:
Mind that a spaghetti stack is useful when you want to keep references of things that you pop out of the stack, having many parallel linked list that end to a common root. So you have to keep references of item you pop out because you need to traverse them in a bottom-up way from the leaf to the root, and of course using a different leaf node will produce a different linked list that has elements in common with other lists that start from other leaves.. |
||||||
|
