Skip to content

ThomasThelen/DataStructures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PRs Welcome BCH compliance

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