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

https://github.com/sameetasadullah/doubly-linkedlist-implementation

My own C++ implementation of Doubly LinkedList using Microsoft Visual Studio
https://github.com/sameetasadullah/doubly-linkedlist-implementation

cpp doubly-linked-list visual-studio

Last synced: over 1 year ago
JSON representation

My own C++ implementation of Doubly LinkedList using Microsoft Visual Studio

Awesome Lists containing this project

README

          

Doubly LinkedList Implementation

### Description
My own `C++ Implementation` of Doubly LinkedList using `Microsoft Visual Studio`. The code is based on an example of `Employee Class` but you can modify it as per your requirement.

### Functions
- getSize()
- getHead()
- Insert()
- remove()
- updateSalary()
- updateBonus()
- clear()
- isEmpty()
- Display()
- sort()