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

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

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()