This repository contains implementations for different types of linked lists in C++. It is originally designed as an accompanying resource to this YouTube video and this educational article.
The implementation is designed to work with two classes - LinkedList and Node.
Type | LinkedList Implementation | Node Implementation |
Singly Linked List | LinkedList.h | Node.h |
Doubly Linked List | LinkedList.h | Node.h |
Circly Linked List | LinkedList.h | Node.h |