Doubly Linked List
Term side of the Card
Topic: Linked List
Unit title: Doubly Linked List
Categories: Data structure
Explanation side of the Card
Explanation: The linked structure where each node links to both the previous and next nodes. Allows efficient two-way traversal, but requires more memory than singly linked lists.