预备知识我们可以用标准库(STL)中的标准模版 std::vector 来使用邻接链表。
首先定义一个结构体,包括邻接结点和边权值
struct Edge{
int nextNode;
int cost;
};
为每个结
2018-07-18