https://github.com/sameetasadullah/singly-linkedlist-implementation
My own templatized C++ implementation of Singly LinkedList using Microsoft Visual Studio
https://github.com/sameetasadullah/singly-linkedlist-implementation
cpp singly-linked-list singlylinkedlistoperations visual-studio
Last synced: over 1 year ago
JSON representation
My own templatized C++ implementation of Singly LinkedList using Microsoft Visual Studio
- Host: GitHub
- URL: https://github.com/sameetasadullah/singly-linkedlist-implementation
- Owner: SameetAsadullah
- Created: 2022-07-31T13:00:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T17:16:15.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T17:51:05.031Z (over 1 year ago)
- Topics: cpp, singly-linked-list, singlylinkedlistoperations, visual-studio
- Language: C++
- Homepage:
- Size: 16.3 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Singly LinkedList Implementation
### Description
My own `Templatized C++ Implementation` of Singly LinkedList using `Microsoft Visual Studio.`
### Functions
- insert()
- insertAt()
- Remove()
- removeAt()
- replace()
- replaceAt()
- clear()
- getHead()
- isEmpty()
- gotoNext()
- gotoPrior()
- getCursor()
- moveCursor()
- moveCursortoEnd()
- Display()
- sort()
- duplicate()
- splitList()