Table of contents:
IntroductionWhat is a Doubly Linked List?OOP BasicsTemplateUseful ApplicationsImplementing a Doubly Linked List Using OOP and TemplateQuestions
Reading time: 15 minutes
Introduction
A doubly linked list is an extremely useful data structure that can permit forward and backward traversal of a list. This method of traversal is what makes it very unique and desirable in many situations.
In this article at OpenGenus, we will review how we can utilize OOP and templates to ...
Published on June 29, 2023 00:24