深度优先搜寻(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
相关文章
相关标签/搜索