https://github.com/maksasj/dunmorogh
Dunmorogh - simple c++ library, that implements some sorting algorithms
https://github.com/maksasj/dunmorogh
cpp educational-project library sorting sorting-algorithms
Last synced: about 1 year ago
JSON representation
Dunmorogh - simple c++ library, that implements some sorting algorithms
- Host: GitHub
- URL: https://github.com/maksasj/dunmorogh
- Owner: Maksasj
- License: mit
- Archived: true
- Created: 2023-04-15T09:20:57.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-18T13:35:47.000Z (about 3 years ago)
- Last Synced: 2025-03-13T20:30:05.965Z (over 1 year ago)
- Topics: cpp, educational-project, library, sorting, sorting-algorithms
- Language: C++
- Homepage:
- Size: 33.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Dunmorogh
Dunmorogh - simple c++ library, that implements some sorting algorithms such as insertion sort, merge sort, gnome sort, as well as introduces new hybrid sorting algortim named **dunmorogh sort**, that combines these three sorting algorithms.
> Note: This repository is not actively maintained, repository where made only for educational purposes.
## Building
### Requirments
- Cmake (probably any version)
- Any c++ compiler, but clang is preferable.
```bash
cmake -B build -G Ninja
cmake --build build
```
But for convenience there is bash `make` script
```bash
make.bat
```
## Testing
For testing this project is using Ctest framework, so probably you need to install cmake :). Also there is a simple bash script, created for testing convenience.
```bash
test.bat
```
## License
Dunmorogh is free, open source library. All code in this repository is licensed under
- MIT License ([LICENSE.md](https://github.com/Maksasj/graph/blob/master/LICENSE.md) or https://opensource.org/license/mit/)