Please enable JavaScript.
Coggle requires JavaScript to display documents.
List, ADT, Data Structure - Coggle Diagram
List
Queues
-
-
-
-
Enqueues from one side, dequeues from the other
-
Stacks
-
-
-
Array implementation
-
-
Might overflow capacity and full copy to a new location is required, needs a contiguous block of memory
-
Index-based
You have full access to the list, all you need is the index
-
-
-
Usual methods: size, insert, delete, clear, etc.
-
-