Лабораторная работа: Способи зберігання графів. Пошук в графі
if(NEW[v])
{
count++;
Width(v,n);
cout<<"\n\n";
}
pel=pel->next;
v=pel->number-1;
}
}
cout<<"Kilkist komponent zvyaznosti:"<<count;
if(count>1)
cout<<"\nGraf ne zvyaznyy\n";
else
cout<<"\nGraf zvyaznyy\n";
cout<<"\n-------------------------------\n\n";
cout<<"Spuski sumiznosti:"<<endl;
for(i=0; i<n; i++){
cout<<i+1<<": ";
for(j=0; j<n; j++){
if(M[i][j]==1){
cout<<j+1<<" ";}
}
cout<<endl;
}
getch();
}
list* AddElem(list *last,int i,int j)
{