c中的图表及其实现

时间:2016-05-02 17:17:51

标签: c

c:

中图表的节点定义
struct AdjListNode
{
int dest;
struct AdjListNode* next;
};

列表定义是什么?

1 个答案:

答案 0 :(得分:-3)

struct AdjList
{
struct AdjListNode *head;
};


struct Graph
{
int V;
struct AdjList* array;
};

访问: http://www.geeksforgeeks.org/graph-and-its-representations/