What is a doubly linked list?

Arrays Linked Lists Questions



46 Short 80 Medium 67 Long Answer Questions Question Index

What is a doubly linked list?

A doubly linked list is a type of linked list where each node contains a reference to both the next node and the previous node in the sequence. This allows for traversal in both directions, forward and backward, making it easier to insert or delete nodes at any position within the list.