树结构练习——判断给定森林中有多少棵树
Time Limit: 1000MS Memory Limit: 65536KB
Submit Statistic
Problem Description
Input
第一行包含两个整数n,m,表示该份代码中的n个类和m个单继承关系。
后面m行,每行两个整数a b,表示a是b的直接基类。
Output
Example Input
2 1 1 2 2 0
Example Output
1 2
Hint
#include <stdio.h>
#include <string.h>
int pre[123];
void initial(int n)
{
for(int i=0;i<=n;i++)
{
pre[i] = i;
}
}
int Find(int root)
{
int a = root;
while(root!=pre[root])
{
root = pre[root];
}
while(pre[a]!=root)
{
int temp = pre[a];
pre[a] = root;
a = temp;
}
return root;
}
int Count(int n)
{
int count=0;
for(int i=0;i<=n;i++)
{
int root = Find(i);
if(root)
{
count++;
pre[root] = 0;
}
}
return count;
}
void Join(int a,int b)
{
int root_a = Find(a);
int root_b = Find(b);
if(root_a!=root_b)
{
if(root_a<root_b)
{
pre[root_a] = root_b;
}
else
{
pre[root_b] = root_a;
}
}
}
int main()
{
int n,m;
while(~scanf("%d%d",&n,&m))
{
initial(n);
while(m--)
{
int u,v;
scanf("%d%d",&u,&v);
Join(u,v);
}
printf("%d\n",Count(n));
}
return 0;
}
标签:pre,count,树结构,int,练习,while,给定,root,Find From: https://blog.51cto.com/u_12606187/5959798