Лабораторная работа: Способи зберігання графів. Пошук в графі

FILE* file;

if ((file = fopen("matr.txt", "rt"))== NULL){

fprintf(stderr, "Cannot open input file.\n");

return 1; }

cout<<"Matrytsay sumizhnosti: "<<endl;

fscanf(file,"%d",&count);

cout<<"Rozmir matrusti: "<<count<<"x"<<count;

for(i=0;i<count;i++){

cout<<endl;

cout<<"\t\t\t";

for(j=0;j<count;j++)

{

fscanf(file,"%d",&M[i][j]);

cout<<M[i][j]<<" ";

}

}

int k=0;

for(i=0;i<count;i++)

for(j=0;j<count;j++)

if(M[i][j]!=M[j][i])

k=1;

if(k!=1)

cout<<"\nGraf ne orientovanuy." ;

else

cout<<"\nGraf orientovanuy.";

//----------------------

if (k==1){

for(i=0;i<count;i++)

for(j=0;j<count;j++)

К-во Просмотров: 317
Бесплатно скачать Лабораторная работа: Способи зберігання графів. Пошук в графі