圖論知識小結1-使用數組模擬實現鄰接表

//普通一維數組模擬實現 const int MAX_N = 100; const int MAX_M = 10000; //創建MAX_N條邊 struct edge{ int v; //當前邊的終點 int last_eid; //上一條相同起點的邊的編號 }edge[MAX_M]; int latest_eid_of_u[MAX_N], temp_eid; void init
相關文章
相關標籤/搜索