Lecture Session
Data Structure Using C
Unit - 3 [ Introduction of Linked List ]
Reference: https://www.hackerearth.com/practice/data-structures/linked-list/singly-linked-list/tutorial/ Asst. Prof. Ashwini Kumar Mathur
,Tips : Practice via animation - Better
Understanding Of DS concepts
https://visualgo.net/en
, Overview of Linked List / Singly Linked List
A linked list is a way to store a collection of elements. Like an
array these can be character or integers. Each element in a linked
list is stored in the form of a node.
, Node
A node is a collection of two sub-elements or parts. A data part that stores the element and a next
part that stores the link to the next node.
Data Structure Using C
Unit - 3 [ Introduction of Linked List ]
Reference: https://www.hackerearth.com/practice/data-structures/linked-list/singly-linked-list/tutorial/ Asst. Prof. Ashwini Kumar Mathur
,Tips : Practice via animation - Better
Understanding Of DS concepts
https://visualgo.net/en
, Overview of Linked List / Singly Linked List
A linked list is a way to store a collection of elements. Like an
array these can be character or integers. Each element in a linked
list is stored in the form of a node.
, Node
A node is a collection of two sub-elements or parts. A data part that stores the element and a next
part that stores the link to the next node.