Doubly linked list is a kind of linked list in which each node has two link fields. One link field stores the address of previous node and the other link field stores the address of the next node.
Define doubly linked list.
September 14, 2023 in Data Structure