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

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.

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/)