Data structures Flashcards

1
Q

What does the acronym LIFO mean?

A

Last in first out
push pushes to top, pop, gets top out, peek() returns top value without removing it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What methods are available on a Stack data structure?

A

peek() allows you to peek at the top without removing it, print() to print the value?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What must you do to access the value at an arbitrary point in a stack (not just the “top”)?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly