https://github.com/maksasj/graph
Graph - simple c++ library, that implements a simple graph adt structure as well as implements some graph based algorithms like, vertex cover algorithm.
https://github.com/maksasj/graph
cpp educational-project graph library
Last synced: about 1 year ago
JSON representation
Graph - simple c++ library, that implements a simple graph adt structure as well as implements some graph based algorithms like, vertex cover algorithm.
- Host: GitHub
- URL: https://github.com/maksasj/graph
- Owner: Maksasj
- License: mit
- Archived: true
- Created: 2023-05-30T18:41:17.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-18T13:15:00.000Z (about 3 years ago)
- Last Synced: 2025-03-13T20:30:08.312Z (over 1 year ago)
- Topics: cpp, educational-project, graph, library
- Language: C++
- Homepage:
- Size: 117 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Graph
Graph - simple c++ library, that implements a simple graph adt structure as well as implements some graph based algorithms like, vertex cover algorithm.
> 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
```
## License
Graph 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/)