Doubly-Linked List in Data Structures
A doubly linked list is a linked list in which each node has three fields namely Data, Next, Prev. Data-This field stores the value of the element Next-This field points to the successor node in the list Prev-This field points to the predecessor node in the list PREV DATA NEXT DOUBLY LINKED LIST Basic operations […]