标签:位置 结构 邻接表 ext next 链式 最大 工具 oid
对于稀疏图而言,前向星(邻接表)是必不可少的工具,感性理解前向星,写多了就背下来了
struct fdfdfd{int next,to,w;}a[1000];//定义
int head[1000],cnt;
void addedge(int x,int y,int w){a[++cnt].to=y; a[cnt].w=w; a[cnt].next=head[x]; head[x]=cnt;}//加边(x,y)边权为w
for(int i=head[x];i!=0;i=a[i].next) x=i,y=a[i].to,w=a[i].w;//遍历以x起始的边,(x,y)边权 w 如左表示
标签:位置 结构 邻接表 ext next 链式 最大 工具 oid
原文地址:https://www.cnblogs.com/wuwendongxi/p/13332659.html