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

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++

Awesome Lists containing this project

README

          

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[![BCH compliance](https://bettercodehub.com/edge/badge/ThomasThelen/DataStructures?branch=master)](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