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

链式前向星模板

时间:2017-08-22 19:47:01      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:code   math   str   oid   style   整理   string   lib   clu   

整理一下,按边存储的结构都可以用此存储。

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 #include<cstdlib>
 5 #include<iostream>
 6 #include<cmath>
 7 using namespace std;
 8 typedef long long ll;
 9 const int maxn=1e5+3;
10 struct Edge{
11     int nxt;
12     int to;
13     int w;
14 }e[maxn];
15 int head[maxn],cnt;
16 void add_edge(int u,int v,int w){//单向
17     e[cnt].w=w;
18     e[cnt].to=v;
19     e[cnt].nxt=head[u];
20     head[u]=cnt++;
21 }
22 int main(){
23     int u=1;
24     for(int i=head[u];i!=-1;i=e[i].nxt){
25         
26     }
27 }

 

链式前向星模板

标签:code   math   str   oid   style   整理   string   lib   clu   

原文地址:http://www.cnblogs.com/elpsycongroo/p/7413180.html

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