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
- Host: GitHub
- URL: https://github.com/rajrahane/linked-list-cpp-templates
- Owner: Rajrahane
- Created: 2018-09-08T10:39:29.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-18T17:03:02.000Z (almost 7 years ago)
- Last Synced: 2025-01-08T18:47:55.319Z (about 1 year ago)
- Topics: cpp14, generic-programming, library, linked-list, template
- Language: C++
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.