会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
$$AVICII$$
$\small \mathrm{bootpuss}$
He said one day you'll leave this world behind,so live a life you will remember.
博客园
首页
新随笔
管理
2019年8月9日
有向边tarjan
摘要: 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
阅读(140)
评论(0)
推荐(0)
编辑
公告