深度優先搜尋(DFS) C語言實現

僞代碼code #define Black 2 #define Gray 1 #define White 0 #define Infinite -1 #define NIL -1 struct map{ int d; int f; int color; int parent; } vertix[100]; int time; void DSF(int a[100][100],int n
相關文章
相關標籤/搜索