klips/cpp/datastructs/templates
Shaun Reed a97dfbe34b Clean up CMakeLists in all C++ examples
+ Rename output executables to match directory structure
+ Remove libraries for small examples
+ Supress -Wreturn-type warnings for singleton that is intentionally not copyable
2022-03-31 16:01:08 -04:00
..
doublelist Clean up CMakeLists in all C++ examples 2022-03-31 16:01:08 -04:00
queuelist Clean up CMakeLists in all C++ examples 2022-03-31 16:01:08 -04:00
stacklist Clean up CMakeLists in all C++ examples 2022-03-31 16:01:08 -04:00
vector Clean up CMakeLists in all C++ examples 2022-03-31 16:01:08 -04:00
CMakeLists.txt Clean up CMakeLists in all C++ examples 2022-03-31 16:01:08 -04:00
README.md Update READMEs 2020-11-23 14:45:00 -05:00

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