摘要:
void tarjan(int u){ dfn[u]=low[u]=++num; stack[++top]=u; instack[u]=true; for(int i=hd[u];i;i=bl[i].nt){ if(!dfn[bl[i].to]){ tarjan(bl[i].to); low[u]=minn(low[u],low[bl[i].to]); } else if(instack[bl[i 阅读全文
posted @ 2019-08-09 14:48
bootpuss
阅读(145)
评论(0)
推荐(0)

浙公网安备 33010602011771号