Skip to content

Commit

Permalink
Update Utils.c
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhinnn-py authored Feb 1, 2021
1 parent db5a913 commit fe474be
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions Utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1653,19 +1653,5 @@ int* hopcroftKarp(int** adj, int V, int partition)

int main()
{
int V = 12;
int adj[N][N] = {{0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1},
{0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0}};
int** adj_ = a2dp(adj, V);
hopcroftKarp(adj_, V, 6);
//main!!
}

0 comments on commit fe474be

Please sign in to comment.