c:
中图表的节点定义struct AdjListNode
{
int dest;
struct AdjListNode* next;
};
列表定义是什么?
答案 0 :(得分:-3)
struct AdjList
{
struct AdjListNode *head;
};
struct Graph
{
int V;
struct AdjList* array;
};
访问: http://www.geeksforgeeks.org/graph-and-its-representations/