logic questions revolving a stack and implementing a few stack procedures according to the questions
Sigiloso
when asked to always being able to know the minimum value of a stack you have to use a link list for the minimum values since if u remove the current minimum you need to be able to get to the former without going over the whole stack again.