https://github.com/thomasthelen/datastructures
Various data structures implemented in c++
https://github.com/thomasthelen/datastructures
data-structures datastructures doubly-linked-list linked-list singly-linked-list templates
Last synced: 8 months ago
JSON representation
Various data structures implemented in c++
- Host: GitHub
- URL: https://github.com/thomasthelen/datastructures
- Owner: ThomasThelen
- Created: 2016-01-20T20:51:01.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-03-09T06:08:21.000Z (over 4 years ago)
- Last Synced: 2025-01-10T21:47:53.583Z (10 months ago)
- Topics: data-structures, datastructures, doubly-linked-list, linked-list, singly-linked-list, templates
- Language: C++
- Size: 7.44 MB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](http://makeapullrequest.com)
[](https://bettercodehub.com/)# DataStructures
I created this repository years and years ago in preparation for my first programming interview. I came back years and years later to fix all the nasty memory leaks by replacing raw pointers
with smart ones. This is unmaintained and was only fixed to help me sleep at night.## SingleList
This is a singly linked list which can hold integer type data.
## SingleListGeneric
This is the SingleList project but templated so that it can take any type, rather than just an integer
## DoubleList
This is a doubly linked list which can take an integer type as data.
## DoubleListGeneric
The DoubleList project done with templates to take any type