Data Structures#
Contents#
Sections#
Summary#
Fixed-size, or static data structures include arrays and multidimensional arrays as well as C structs. Dynamic data structures have size that change at runtime and include linear data structures like linked-lists, stacks, and queues.
Terms#
[ w ] ADT Abstract Data Type
[ w ] Adjacency List
[ w ] Adjacency Matrix
[ w ] Array
[ w ] Associative Array
[ w ] Data Structure [ list of data structures ]
[ w ] Data Type
[ w ] Double-Ended Queue (Deque)
[ w ] Doubly Linked List
[ w ] Linear Data Structure
[ w ] Linked List
[ w ] List
[ w ] Pointer
[ w ] Priority Queue
[ w ] Queue
[ w ] Stack