圖的鄰接表

typedef struct Path //定義邊表節點 { int placeNum; //存儲頂點下標 int distance; //權重值 struct Path* next; //邊指針 } Path; typedef struct Place /*頂點表節點*/ { string data
相關文章
相關標籤/搜索