ppt 圖的基本算法 dfs

                      #include <stdio.h> #include<string.h> #define N 10 int g[N][N]; int bz[N]; int n,m ; void DFS(int cur) { int j; bz[cur]=1; printf("V%d",cur); for(j=1;j<=n ;j++ ) if(g[cur][j] &&
相關文章
相關標籤/搜索