struct AdjList
{
struct AdjListNode *head;
};
struct Graph
{
int V;
struct AdjList* array;
};
visit here:
http://www.geeksforgeeks.org/graph-and-its-representations/
solved Graph in c,and its implementation [closed]
struct AdjList
{
struct AdjListNode *head;
};
struct Graph
{
int V;
struct AdjList* array;
};
visit here:
http://www.geeksforgeeks.org/graph-and-its-representations/
solved Graph in c,and its implementation [closed]