Rajrahane / Linked-List-CPP-Templates

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.