7 - 8 파일 전송 (25 점)
14870 단어 데이터 구조
#include
using namespace std;
typedef int* SetType;
int Find(SetType S,int X);
void Union(SetType S,int Root1,int Root2);
void Input_connection(SetType S);
void Check_connection(SetType S);
void Check_network(SetType S,int n);
int main(){
SetType S;
int n;char in;
cin>>n;
S = new int [n];
for(int i = 0;i<n;i++){
S[i] = -1;
}
do{
cin>>in;
switch(in){
case 'I':Input_connection(S);break;
case 'C':Check_connection(S);break;
case 'S':Check_network(S,n);break;
}
}while(in!='S');
delete(S);
return 0;
}
int Find(SetType S,int X)
{
if(S[X]<0){
return X;
}else{
return S[X] = Find(S,S[X]);
}
}
void Union(SetType S,int Root1,int Root2){
if(S[Root2]<S[Root1]){
S[Root1] = Root2;
}else{
if(S[Root2]==S[Root1]){
S[Root1]--;
}
S[Root2] = Root1;
}
}
void Input_connection(SetType S)
{
int u,v;
int Root1,Root2;
cin>>u>>v;
Root1 = Find(S,u-1);
Root2 = Find(S,v-1);
if(Root1!=Root2){
Union(S,Root1,Root2);
}
}
void Check_connection(SetType S)
{
int u,v;
cin>>u>>v;
int Root1,Root2;
Root1 = Find(S,u-1);
Root2 = Find(S,v-1);
if(Root1==Root2){
cout<<"yes"<<endl;
}else{
cout<<"no"<<endl;
}
}
void Check_network(SetType S,int n)
{
int i,counter = 0;
for(i=0;i<n;i++){
if(S[i]<0)counter++;
}
if(counter==1){
cout<<"The network is connected."<<endl;
}else{
cout<<"There are "<<counter<<" components.
";
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.