circular-doubly-linked-list
There are 22 repositories under circular-doubly-linked-list topic.
ShyrenMore/InterviewPrep
A repo that might help you for Data structures and Algorithms (DSA) interviews
mentesnot/Circular-Doubly-Linked-List
Data Structures - Circular doubly linked list project with various methods
prathwik0/data-structures-in-c
Data Structures in C
BaseMax/CircularDoublyLinkedListC
This is a simple implementation of Circular Doubly Linked-List in C. Circular Doubly Linked-List is a data structure that is a combination of a doubly linked list and a circular linked list. It is a linked list where all nodes are connected to each other. It is a circular linked list because all nodes are connected to each other.
Floofies/LinkedList
Singly linked, doubly linked, and circular LinkedList classes for JavaScript. Taken from Differentia.js
wesleey/advanced-data-structures
Linked lists, Queues, Stacks, Trees, Graphs and Hash tables.
yashsriram/fusion
A circular variant of tetris.
3d2069940/lru_cache
C++ LRU cache implementation
AdityaKumar444/MySirG_DSA_through_CPP
This repository contains solutions of assignments of DSA through C++ MySirG
jaredLunde/cdll-memoize
A versatile LRU memoization function for Javascript which uses a circular doubly linked list as the cache's data structure
MashiAma/Song-Playlist
Song Playlist Using C# Windows Presentation Foundation(WPF). Basically use Circular doubly Linked List for change the next and previous songs. and add the Selection and bubble sort methods to sort the song list.
memr5/Data-Structures
Basic Operations of Various Data-Structures
plipustel/DSLinkedList
Linked List
AdityaKumar444/Ineuron-Assignments-DSA-solutions
This repository contains C++ DSA assignments solutions of C++ bootcamp course of Ineuron
bkmandge/Data-Structures-Implementations
All "Data Structures" are implemented here
eduardspirache/Galactic-War-CDLL
Command-line game implemented with circular doubly linked lists
Anuj-Codes/DSA_WIth_Python_Practice
DSA with Python coding problems
Jeffresh/CircularDoublyLinkedList
A Circular Doubly Linked List structure implemented in c++.
Keywcksn/DataStructure
Computer Science 2nd semester - Data Structure
PapageorgiouMarios/Data-Structures-Circular-Doubly-Linked-List
Data structure in which list's nodes contain pointers to its previous nodes as well as the next nodes.
tfpf/circular-doubly-linked-list-josephus-problem
A circular doubly-linked list implementation. Used to solve the Josephus problem.