Loading video...
QuickNotes™ 
Linked List
A linked list is a data structure that adds a node to the list as necessary and the size adjusts as more elements are added to the list.
Memory is allocated dynamically during the execution of the program, there is no limit on the size of the list.
A linked list may be: Singly, doubly, or circularly linked.
Common Operations: Add, delete, and search (traverse) the list.
Discussion 
Please login to ask a question and view discussion.













