MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

graph/code19.cpp:112–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112int main()
113{
114 int v = 7;
115 vector<int> vec[v];
116
117 // adding edges now
118 add_edge(vec, 0, 1);
119 add_edge(vec, 1, 2);
120 add_edge(vec, 2, 3);
121 add_edge(vec, 0, 3);
122 add_edge(vec, 1, 4);
123 add_edge(vec, 4, 5);
124 add_edge(vec, 5, 6);
125 add_edge(vec, 4, 6);
126
127 arti_point(vec, v);
128 return 0;
129}

Callers

nothing calls this directly

Calls 2

arti_pointFunction · 0.85
add_edgeFunction · 0.70

Tested by

no test coverage detected