求助:链式前向星
  • 板块学术版
  • 楼主simonG
  • 当前回复4
  • 已保存回复4
  • 发布时间2021/4/19 13:45
  • 上次更新2023/11/5 00:21:19
查看原帖
求助:链式前向星
253936
simonG楼主2021/4/19 13:45
void add(int from,int to,int dis)
{
	e[++tot].next=head[from];
	e[tot].to=to;
	e[tot].dis=dis;
	head[from]=tot;
}

这里head是什么意思??

2021/4/19 13:45
加载中...