CXXGraph
CXXGraph copied to clipboard
Header-Only C++ Library for Graph Representation and Algorithms
I think it would be useful to add methods in the Graph class for calculating the betweenness centrality of a node and maybe also other centrality measures (eigenvalue centrality, closeness...
Some library users may want to use pointer types in Graph templates, such as: ``` CXXGraph::Graph graph; ``` The code in `Graph.hpp` that prevents compiling without defining stream operators on...
Tracking issue for: - [ ] https://github.com/ZigRazor/CXXGraph/security/code-scanning/404
Now that the project have a good visibility, we need a new interface with the Public. So we need a new WebSite for the project that for the moment will...
Please add an algorithm to find bridge inside graph.
Please add Dinic's Algorithm for computing the maximum flow.
Implementation of [Hopcroft–Karp](https://en.wikipedia.org/wiki/Hopcroft%E2%80%93Karp_algorithm) algorithm.
Please Add Benchmark similar to the existing Benchmark for other algorithm for Kosaraju Algorithm
Completes [issue 407](https://github.com/ZigRazor/CXXGraph/issues/407) with final site config and doc additions.
#419 -Implemented the deleteNodeById function in the Graph class to delete a node by its ID. -Utilized a lambda function with std::find_if to search for the node with the provided...