Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dcsunset/dsalib

A simple library used in Data Structure and Algorithm course
https://github.com/dcsunset/dsalib

Last synced: 3 days ago
JSON representation

A simple library used in Data Structure and Algorithm course

Awesome Lists containing this project

README

        

# DSA Library

This library is part of the assignment of Data Structure and Algorithm course.
It is based on C++11 and above.

This library is simple and might still be incomplete and buggy.

## Data structures

This library contains the following data structures:

* Vector (Dynamic array)
* Hash table
* String
* List
* Stack
* AVL tree

## Highlight

* Move operation in C++11 standard. (May be incomplete)
* Using template and OOP design to make it easy to use.