0
4.5kviews
What is linked list? Write a 'C' function for the insertion of 'n' elements
1 Answer
written 8.8 years ago by | • modified 8.8 years ago |
1. Linked List
i. A linked list is a linear collection of data items called as nodes, linked to one another by means of pointers.
ii. Each node is divided into following two parts:
iii. Types of …