Stacks and Queues

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/6

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards
Queues
- First-In-First-Out data structure
- Pointers mark front and rear
2
New cards
Stacks
- Last-In-First-Out data structure
3
New cards
Circular Queue
- Wraps back around to the start
4
New cards
Add to a stack
Push()
5
New cards
Remove from a stack
pop()
6
New cards
Add to queue
enqueue()
7
New cards
Remove from queue
dequeue()