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

Function main

CPP/graph_tree/adjacency_matrix.cpp:9–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7#define endl '\n'
8
9int main(){
10 cin.tie(0)->sync_with_stdio(0);
11 int n,m;
12 cin>>n>>m;
13 int arr[n+1][n+1];
14 for (int i = 0; i < m; ++i)
15 {
16 /* code */
17 int u,v;
18 arr[u][v]=1;
19 arr[v][u]=1;
20 }
21
22 return 0;
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected