使用说明:需要邻接表模板 ,头文件string.h 宏定义#define CLR(arr,v) memset(arr,v,sizeof(arr))
const int M = 105 ;
Graph<M,M*M> g;
int Connect[M],Low[M],Ind[M],Stack[M],InStack[M],ConnectNum,top,ind;
void Dfs(int cur)
{
Low[cur] = Ind[cur] = ++ind;
Stack[top++] = cur;
InStack[cur] = true;
for(int i = g.H[cur]; i != -1; i = g.Next[i])
{
if(!Ind[ g.Num[i] ])
{
Dfs(g.Num[i]);
Low[cur] = min(Low[cur],Low[ g.Num[i] ]);
}
else if(InStack[ g.Num[i] ])
{
Low[cur] = min(Low[cur],Ind[ g.Num[i] ]);
}
}
if(Low[cur] == Ind[cur])
{
ConnectNum++;
int s;
do{
s = Stack[--top];
Connect[s] = ConnectNum;
InStack[s] = false;
}while(cur != s);
}
}
int Tarjan(int n)
{
CLR(Ind,0);
CLR(InStack,false);
ConnectNum = top = ind = 0;
for(int i = 1;i <= n;++i)
if(!Ind[i]) Dfs(i);
return ConnectNum;
}

本文详细介绍了一种用于寻找无向图中强连通分量的Tarjan算法实现过程。该算法利用深度优先搜索策略,通过记录节点的访问顺序及最低可达节点来识别强连通分量。文中提供了一个具体的C/C++代码实现示例。
788

被折叠的 条评论
为什么被折叠?



