Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 510 Bytes

README.md

File metadata and controls

8 lines (8 loc) · 510 Bytes

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.