Data Structures Flashcards

1
Q

Dictionary

A

Abstract data type that permits access to data items by content (key)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

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

Heap

A

Simple data structure to support Priority Queue ops (insert, findMin, extractMin)

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