ADTs Flashcards
Array
Stores elements in a collection of fixed length
Create Array
Integer -> Array
Set Array
Array x Integer x Element -> Array
Get Array
Array x Integer -> Element
List
Stores elements in a collection of changeable length
Create List
List
IsEmpty List
List -> Boolean
Get List
List x Integer -> Element
Set List
List x Integer x Element -> List
Insert List
List x Integer x Element -> List
Delete List
List x Integer -> List
Stack
Last In First Out, can only access top
Create Stack
Stack
IsEmpty Stack
Stack -> Boolean
Push Stack
Stack x Element -> Stack
Peek Stack
Stack -> Element
Pop Stack
Stack -> Stack
Queue
First In First Out
Create Queue
Queue
IsEmpty Queue
Queue -> Boolean
Append Queue
Queue x Element -> Queue
Peek Queue
Queue -> Element
Serve Queue
Queue -> Queue
Priority queue
FIFO but considers highest priority values first
Create Priority queue
Priority queue
IsEmpty Priority queue
Priority queue -> Boolean
InsertWithPriority Priority queue
Priority queue x Element x Integer -> Priority queue
GetMin (head) Priority queue
Priority queue -> Element
RemoveMin (dequeue) Priority queue
Priority queue -> Priority queue
Dictionary
Key-value pairs, data is stored as a value which is associated with a key
Create Dictionary
Dictionary
HasKey Dictionary
Dictionary x Element -> Boolean
Add Dictionary
Dictionary x Element x Element -> Dictionary
Update Dictionary
Dictionary x Element x Element -> Dictionary
Remove Dictionary
Dictionary x Element -> Dictionary
Get Dictionary
Dictionary x Element -> Element
Graph
Collection of nodes and edges
Create Graph
Graph
AddNode Graph
Graph x Element -> Graph
AddEdge Graph
Graph x Element x Element -> Graph
Adjacent Graph
Graph x Element x Element -> Boolean
Neighbours Graph
Graph x Element -> List