-5
ノード定義:Cのグラフ、およびCのグラフの実装
struct AdjListNode
{
int dest;
struct AdjListNode* next;
};
リスト定義はどうなりますか?ここ
ノード定義:Cのグラフ、およびCのグラフの実装
struct AdjListNode
{
int dest;
struct AdjListNode* next;
};
リスト定義はどうなりますか?ここ
struct AdjList
{
struct AdjListNode *head;
};
struct Graph
{
int V;
struct AdjList* array;
};
訪問:明らか http://www.geeksforgeeks.org/graph-and-its-representations/
'42'。 –
@GillBates:もっと重要:何が質問ですか? – Olaf