Naveen Raja S.M
,Linked List:
• Linked List can be defined as collection of obje
called nodes that are randomly stored in the memory.
• A node contains two fields i.e.
1) Data stored at that particular address
2)Link or reference which points to the address of the n
node in the memory.
• The last node of the list contains null value.
,Linked List:
, Linked List: Advantages
• Dynamic Data structure : Size of the linked list can be increased at
anytime.
• Elements can be stored randomly : No need of contiguous memor
allocation.
• Insertion & deletion is easy.