Explain the types of linked lists.The types of linked lists are: Singly linked list: It has only head part and corresponding references to the next nodes. Doubly linked list: A linked list which both head and tail parts, thus allowing the traversal in bi-directional fashion. Except the first node, the head node refers to the previous node. Circular linked list: A linked list whose last node has reference to the first node.
|