Skip to content

Latest commit

 

History

History
3 lines (3 loc) · 548 Bytes

README.md

File metadata and controls

3 lines (3 loc) · 548 Bytes

Doubly-LinkedList

In computer science, a doubly linked list is a linked data structure that consists of a set of sequentially linked records called nodes. Each node contains three fields: two link fields (references to the previous and to the next node in the sequence of nodes) and one data field. The beginning and ending nodes' previous and next links, respectively, point to some kind of terminator, typically a sentinel node or null, to facilitate traversal of the list.
This project is a simple implementation of this Doubly Linked List.