0
4.2kviews
What is linked list? Write a 'C' function for the insertion of 'n' elements
1 Answer
4
70views

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:

  • Information of the element.
  • Address of the next node in the linked list.

iii. Types of …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.