Doubly Linked List Implementation in C++

What is a doubly-linked list?

Shaila Nasrin
Learn Coding Concepts with Shaila
7 min readApr 21, 2024

--

First of all, if you don’t know what linked list is, read my blog post about it. Now, the difference between a singly linked list and a doubly-linked list is- in a doubly-linked list every node points to two other nodes (i.e node after it and node before it).

Doubly Linked List

--

--