深搜,廣搜

//實驗要求: //用鄰接表存儲一個無向圖, //深度優先,廣度優先遍歷 //拓撲排序 #include<stdio.h> #include<stdlib.h> #include<string.h> typedef int status ; struct ljno //鄰接表數據類型 { int x; //存儲數據 ljno* next; }ss; struct ALGrap
相關文章
相關標籤/搜索