https://github.com/dcsunset/dsalib
A simple library used in Data Structure and Algorithm course
https://github.com/dcsunset/dsalib
Last synced: 3 months ago
JSON representation
A simple library used in Data Structure and Algorithm course
- Host: GitHub
- URL: https://github.com/dcsunset/dsalib
- Owner: DCsunset
- Created: 2019-01-25T08:21:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-25T08:22:21.000Z (over 6 years ago)
- Last Synced: 2024-12-31T09:44:49.610Z (5 months ago)
- Language: C++
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.