stack
our stack project
Group: @JuliusClaudius @c15rl @ofreiberg
Functions of our program:
- Peek (Depth): at a specific depth so that the user can see what is at a point in the stack of their choosing
- Pop at Random Depth:
- Replace: takes an int in the stack at a random point in the stack and replaces it with a different int
- Peak at Random Depth: see what is in the stack at a random depth
- Reverse: reverses the order of the ints in the stack so that if the initial order was 7 6 5 it would become 5 6 7
- Push (Random/Set): pushes input into the stack at both a random depth and at a set depth
- Pop All: pops the entire stack