데이터 구조 및 집합 POJ 1611

460 단어 데이터 구조
#include 
#include 
#include 
const int N=30005;
int parent[N];//    
int son[N];//        
int n,m; 
int find(int x)
{
	if(x!=parent[x]) 
	{
		return parent[x]=find(parent[x]);
	}
	else return x;
}
void into()
{
	for(int i=0;i

좋은 웹페이지 즐겨찾기