0
4.1kviews
Explain linked lists with its various types.
1 Answer
0
180views
  1. A linked list is a linear collection of data items called as nodes, linked to one another by means of pointers.
  2. Each node is divided into following two parts:
  3. Information of the element.
  4. Address of the next node in the linked list.
  5. Types of linked list:

    There are three types …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.