Please enable JavaScript.
Coggle requires JavaScript to display documents.
Linear Data Structures - Coggle Diagram
Linear Data Structures
Linked Lists
-
-
Each element in the list stores its own data AND the address of the memory position of the next element in the list
-
-
-
-
Queues
First In - First Out
Elements are inserted at one end, and removed from the other end
-
-
Data Structure is a container of data, where data is organised in a specific way. It has specific functions to manipulate data.