An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/netromdk/cods.svg?branch=master)](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/).