An open API service indexing awesome lists of open source software.

https://github.com/rajrahane/linked-list-cpp-templates


https://github.com/rajrahane/linked-list-cpp-templates

cpp14 generic-programming library linked-list template

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# Linked-List-CPP-Templates
Generic Implementation Of a Doubly Linked List

Implements Doubly Linked List as a Doubly Ended Queue

Implements C++ Templates and Exception Handling

Implements Insert and Delete Operations at all positions, at end and at beginning in O(1) and in middle in O(n/2)

Searches a Node by indexing in n/2 iterations by using size of the DLL as reference.

Permits classes with an overloaded << extraction operator.

Permits dynamically allocated basic datatypes.