Home > Data Structures and Algorithms 🚀 > Node Manipulation > What Is the Linked List Data Structure? Show previous contentDoubly linked listA doubly linked list has nodes that contain three fields: a data value, a reference forward to the next node, and a reference back to the previous node. Show following content