What is Singly Linked list?
Singly Linked lists are a type of Data Structure. In this, each node in the list stores the content of the node and a reference or pointer to the next node in the list. It does not store any reference or pointer to the previous node.
21 likes