求连通分量-方法4(图论算法)

Description

求一个图的连通分量

Input

n 顶点数(<=100) 

Output

连通分量

Sample Input

 


1 2 
3 4 
2 3 
0 0

 

Sample Output

 

4


解题思路:用广度优先搜索建立图的邻接表。


程序:var
  e:array[0..100,0..100] of longint;
  v:array[0..100] of boolean;
  num,state:array[0..100] of longint;
  ans,n,max,x,y,i:longint;

procedure dfs(x:longint);
  var
    head,tail,i:longint;
  begin
    head:=0;
    tail:=1;
    state[1]:=x;
    v[x]:=false;
    ans:=1;
    repeat
      inc(head);
      for i:=1 to num[state[head]] do
        if v[e[state[head],i]] then
          begin
            inc(ans);
            inc(tail);
            state[tail]:=e[state[head],i];
            v[e[state[head],i]]:=false;
          end;
    until head>=tail;
end;

begin
  readln(n);
  readln(x,y);
  while (x>0) and (y>0) do
    begin
      inc(num[x]);
      e[x,num[x]]:=y;
      inc(num[y]);
      e[y,num[y]]:=x;
      readln(x,y);
    end;
  fillchar(v,sizeof(v),true);
  max:=0;
  for i:=1 to n do
    if v[i] then
      begin
        ans:=0;
        dfs(i);
        if ans>max then max:=ans;
      end;
  writeln(max);
end.


版权属于: Chris
原文地址: http://blog.sina.com.cn/s/blog_83ac6af80102v0us.html
转载时必须以链接形式注明原始出处及本声明。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值