Data Structures Flashcards
1
Q
Dictionary
A
Abstract data type that permits access to data items by content (key)
2
Q
Container
A
Abstract data type that permits storage and retrieval of data items, independent of content (without needing to know anything about them)
3
Q
Priority Queue
A
An abstract data type that allows for insertion of data with a key (priority), and retrieval of the item with the highest/lowest key
4
Q
Heap
A
Simple data structure to support Priority Queue ops (insert, findMin, extractMin)