klips/cpp/datastructs/templates/README.md

15 lines
491 B
Markdown
Raw Normal View History

2020-11-23 19:45:00 +00:00
# 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
```