Реферат: Разработка алгоритмов и программ выполнения операций над последовательными и связанными представлениями структур данных
}
////////////////////////////////////////////////////////////////////////////////
void print3(Array *X,int N1,int N)
{
int k = 0;
for ( int i = 0; i< N; i++){
cout <<'\n'<<i<<": ";
for (k=0 ; k < N1 ; k++)if( X[k].I == i)cout << X[k].J<<' ';
}
}
////////////////////////////////////////////////////////////////////////////////
void print2(Spisok **X,int N)
{ for (int i=0;i<N;i++){
cout <<"\n"<<i<<": ";
Spisok *rex = X[i];
while (rex != NULL){
cout << rex -> index << " " ;
rex = rex->next;
}
}
}
////////////////////////////////////////////////////////////////////////////////
void WriteFile(char *st,int Mas_y)
{
ofstream F;
F.open(st);
randomize();
if (!F) cout << "Can not open file "<< st;
F << Mas_y<<"\n";