Please enable JavaScript.
Coggle requires JavaScript to display documents.
MM2 - Coggle Diagram
MM2
Linked List
-
-
-
Insert
-
- new list node is created and the new element is stored into it
- next field of the new list node is assigned to the current node
- the next field of node pointed to by curr is assigned to point to the newly inserted node
-
-
-
-
Doubly linked list
-
From a node, one can access the next and the previous node
-
-
-
List
-
Finite, ordered sequence of data items known as elements
-