data-stuctures-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() and .pop()
3
Q
What must you do to access the value at an arbitrary point in a stack (not just the “top”)?
A
you need to pop the top of the stack and x amount of times to get to the arbitrary point