Skip to content

Releases: CubedProgrammer/CubedProgrammerCDataStructures

CPCDS Beta Release

15 Mar 15:28
Compare
Choose a tag to compare

New binary search tree and heap data structures. An all-inclusion header file.
Structures include
Strings
Vectors
Lists
Deques
Maps
Sets
Unordered maps
Unordered sets
Priority queues

CPCDS Alpha Release

17 Feb 21:45
Compare
Choose a tag to compare

Has some basic data structures, as well as cppstring, supposed to represent strings in C++.
Data structures include:
Vectors, which are resizable arrays.
Lists, which are doubly linked lists.
Deques, which are double ended queues.
Unordered maps, which maps from a key to a value and stores them in key-value pairs, access value by key in O(1).