https://github.com/netromdk/cods
Collection of Data Structures (vanilla C++14)
https://github.com/netromdk/cods
bitset cpp cpp-library cpp14 data-structures deque hashmap pair priority-queue queue ring-buffer set stack template-library vector
Last synced: 7 months ago
JSON representation
Collection of Data Structures (vanilla C++14)
- Host: GitHub
- URL: https://github.com/netromdk/cods
- Owner: netromdk
- License: mit
- Created: 2016-03-07T19:50:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-21T12:45:20.000Z (over 7 years ago)
- Last Synced: 2025-01-19T06:44:08.814Z (9 months ago)
- Topics: bitset, cpp, cpp-library, cpp14, data-structures, deque, hashmap, pair, priority-queue, queue, ring-buffer, set, stack, template-library, vector
- Language: C++
- Homepage:
- Size: 726 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/netromdk/cods)
# Collection of Data Structures (cods)
*cods* is a templated, include-only C++14 library. No linking required. Just include the header files you need and you're set.Contains the following data structures so far:
- [Vector](cods/Vector.h "Vector")
- [HashMap](cods/HashMap.h "HashMap")
- [Set](cods/Set.h "Set")
- [Queue](cods/Queue.h "Queue")
- [Stack](cods/Stack.h "Stack")
- [Deque](cods/Deque.h "Deque")
- [PriorityQueue](cods/PriorityQueue.h "PriorityQueue")
- [RingBuffer](cods/RingBuffer.h "RingBuffer")
- [Bitset](cods/Bitset.h "Bitset")
- [Pair](cods/Pair.h "Pair")Find the current documentation [here](http://netromdk.github.io/cods/doc/html/).