Please enable JavaScript.
Coggle requires JavaScript to display documents.
2.1 Understand List and Linked list, Disadvantages of Linked List, List,…
-
-
-
-
-
Types of
Linked-List
Single
- contain nodes which have a data part and an address part
- the next pointer of the last node will point to null
Circular
The Next of the last node will point to the firstnode, thus forming a circular chain
Circular double
The Next of the last node will point to the first node and the previous pointer of the first node will point to the last node
-
-
-
-
-
-
-
List: Coffee, Eggs, Banans, Yogurt, Peanut butter, Milk and so on