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
pop( ),push( ),peek( )
3
Q
What must you do to access the value at an arbitrary point in a stack (not just the “top”)?
A
a combination of pop, push and peek
4
Q
DATA STRUCTURES QUEUES
A
<>
5
Q
What does the acronym FIFO mean?
A
first in first out
6
Q
What methods are available on a Queue data structure?
A
enqueue( ), dequeue( ), peek( ), print( )
7
Q
What must you do to access the value at an arbitrary point in a queue (not just the “front”)?
A
combination of all the methods