mirror of
https://github.com/guilhermewerner/paa
synced 2025-06-15 21:14:18 +00:00
28 lines
561 B
C++
28 lines
561 B
C++
#include "Graph.h"
|
|
|
|
int main()
|
|
{
|
|
int nodes = 4;
|
|
Graph *g1 = new Graph(nodes);
|
|
|
|
g1->AddEdge(0, 1);
|
|
g1->AddEdge(2, 0);
|
|
g1->AddEdge(2, 3);
|
|
|
|
cout << "M1:" << endl;
|
|
g1->PrintIncidenceMatrix();
|
|
auto m1 = g1->GetIncidenceMatrix();
|
|
|
|
Graph *g2 = g1->ToTransitiveClosure();
|
|
cout << "M2:" << endl;
|
|
g2->PrintIncidenceMatrix();
|
|
auto m2 = g2->GetIncidenceMatrix();
|
|
|
|
auto m3 = Graph::MultiplyIncidenceMatrix(m1, m2);
|
|
Graph *g3 = new Graph(m3);
|
|
cout << "M3:" << endl;
|
|
g3->PrintIncidenceMatrix();
|
|
|
|
return 0;
|
|
}
|