Shaun Reed
a97dfbe34b
+ Rename output executables to match directory structure + Remove libraries for small examples + Supress -Wreturn-type warnings for singleton that is intentionally not copyable |
||
---|---|---|
.. | ||
doublelist | ||
queuelist | ||
stacklist | ||
vector | ||
CMakeLists.txt | ||
README.md |
README.md
Datastructs
A collection of templated datastructures written in C++
klips/cpp/datastructs/templates/
.
├── binarysearchtree # Templated binary search tree
├── doublelist # Templated doubly linked list
├── queuelist # Templated queue implementation using linked list
├── README.md
├── stacklist # Templated stack implementation using linked list
└── vector # Templated custom vector implementation