DFS--圖中兩點之間的路徑

# include <stdio.h> # include <memory.h> # include <malloc.h> # define MAX 20 //最大頂點數 typedef struct VNODE { int num; //該邊所指的頂點的位置 struct VNODE *next; //指向下一條邊的指針 }arcnode; //表的結點 typede
相關文章
相關標籤/搜索