data-structures-stacks Flashcards
1
Q
What does the acronym LIFO mean?
A
last in first out: last thing that is pushed onto the stack is the first thing that is popped out
2
Q
What methods are available on a Stack data structure?
A
push, pop, peek, print
3
Q
What must you do to access the value at an arbitrary point in a stack (not just the “top”)?
A