algorithms

Algorithms Handbook

View on GitHub

Doubly Linked List

Overview

A Doubly Linked List contains an extra pointer, typically called previous pointer, toghether with the next pointer and data which are there in Singly Linked List.

Advantanges

Disadvantages