码迷,mamicode.com
首页 > 其他好文 > 详细

链式前向星

时间:2018-04-21 14:21:56      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:next   style   code   bsp   head   str   int   add   col   

int head[2*N];
struct Edge{
    int to,next,w;
};

Edge edge[N];

void add(int u,int v,int w){
    edge[cnt].w=w;edge[cnt].to=v;edge[cnt].next=head[u];head[u]=cnt++;
    edge[cnt].w=w;edge[cnt].to=u;edge[cnt].next=head[v];head[v]=cnt++;
}

for(int i=head[u];~i;i=edge[i].next)

 

链式前向星

标签:next   style   code   bsp   head   str   int   add   col   

原文地址:https://www.cnblogs.com/Leonard-/p/8900678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!