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

【模板】链式前向星

时间:2019-03-17 01:08:38      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:++   模板   turn   make   前向星   color   style   col   val   

int n;
int h[MAX_N], nxt[MAX_N * MAX_N], to[MAX_N * MAX_N], val[MAX_N * MAX_N], tot;

void Make_Edge(int u, int v, int w)
{
    to[++tot] = v;
    val[tot] = w;
    nxt[tot] = h[u];
    h[u] = tot;
    return;
}

 

【模板】链式前向星

标签:++   模板   turn   make   前向星   color   style   col   val   

原文地址:https://www.cnblogs.com/kcn999/p/10544988.html

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