这个就像vector一样,不过有些题可能会卡STL,所以我们就模拟一个vector。
head[i]的意思就是以点i为终点的上一条边的编号,edge[i].next就是与边i有着共同出发点的另外一条边的编号,只要照着vector来理解就行了。
下面是代码和图示:
我们存储这张图,跑下面的代码:
#include <iostream>
using namespace std;
int cnt = 0;
int head[1000];
struct edge {
int to;
int weight;
int next;
} edge[1000];
void print(int i,int f)
{
cout << "Edge[" << i << "] to " << edge[i].to << " next "
<< edge[i].next << " head " << head[f] << endl;
}
void addedge(int from,int to,int weight)
{
edge[cnt].to = to;
edge[cnt].weight = weight;
edge[cnt].next = head[from];
head[from] = cnt++;
print(cnt - 1, from);
}
int main()
{
for (int i = 0;i<100;i++)
head[i] = -1;
//13 14 25 26 43 53
addedge(1, 3, 1);
addedge(1, 4, 1);
addedge(2, 5, 1);
addedge(2, 6, 1);
addedge(4, 3, 1);
addedge(5, 3, 1);
getchar();
getchar();
return 0;
}
得到数据如下:
它可以看成是这样的:
这就是链式向前星,盗了张图,sorry啊。