CXXGraph
CXXGraph copied to clipboard
Header-Only C++ Library for Graph Representation and Algorithms
As for Graph, the library should contains also an Hypergraph class. For more details on hypergraph follow this link https://en.wikipedia.org/wiki/Hypergraph
Implement Multithread BFS as descreibed from this research http://www.cse.psu.edu/~kxm85/papers/ParallelBFS-ICPP06.pdf
Please add the Topological Sort algorithm for the Graph
Introduce Markov Chain Algorithm
## FP-GraphMiner - A Fast Frequent Pattern Mining Algorithm for Network Graphs A novel Frequent Pattern Graph Mining algorithm, FP-GraphMiner, that compactly represents a set of network graphs as a...
**Tarjan's algorithm** for finding strongly connected components in a directed graph Uses two main attributes of each node to track reachability, the index of that node within a component(index), and...
Implement an import/export of Graph in Binary File
Implementation of an interface for custom import/export from file
Here we need to add benchmarck for Bellman-Ford Algorithm
There is the necessity to write more test on BFS Algorithm. Specialy on limit case. Any contribution is appreciated.