0
24kviews
Explain insertion and deletion techniques for singly linked list in detail.
1 Answer
4
1.4kviews

Linked List

  • A Linked List is a collection of objects called nodes that are randomly stored in the memory.
  • Each node contains two fields that hold a particular address where data is stored and the pointer which contains the address of the next node in the memory.

Singly-Linked List

  • A …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.