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
- Host: GitHub
- URL: https://github.com/sameetasadullah/doubly-linkedlist-implementation
- Owner: SameetAsadullah
- Created: 2022-08-05T14:46:21.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T17:21:48.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T17:51:07.610Z (over 1 year ago)
- Topics: cpp, doubly-linked-list, visual-studio
- Language: C++
- Homepage:
- Size: 22.1 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()