data-structures-stacks Flashcards
1
Q
What does the acronym LIFO mean?
A
Last in first out
2
Q
What methods are available on a Stack data structure?
A
push , pop, peek
3
Q
What must you do to access the value at an arbitrary point in a stack (not just the “top”)?
A
You have to use the pop method to reach the values further in (and can push those values back when needed)