Explain the Link list representaion of a list with example?
Answers
Answered by
0
Answer:
A linked list is a linear data structure consisting of a group of nodes where each node points to the next node by means of a pointer. Each node is composed of data and a reference to the next node in the sequence. The last node has a reference to null which indicates the end of the linked list.
Answered by
0
Answer:
A linked list is a linear data structure consisting of a group of nodes where each node points to the next node by means of a pointer. Each node is composed of data and a reference to the next node in the sequence. The last node has a reference to null which indicates the end of the linked list...
Explanation:
hope this will helpful to you
Similar questions