tarjan算法求无向图的桥、边双连通份量并缩点

  // tarjan算法求无向图的桥、边双连通份量并缩点 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<vector> using namespace std; const int SIZE = 100010; int head[SIZE], ver[SIZE * 2], Ne
相关文章
相关标签/搜索