Контрольная работа: Моделирование систем
{
svqz UkZv;
int el;
(*UkStr) = new (zveno);
UkZv = (*UkStr); UkZv->Sled = NULL;
cout << "Input nodes: \n";
cin >> el;
while ( el!=0 )
{
UkZv->Sled = new (zveno); UkZv = UkZv->Sled;
UkZv->Element[el] = 1; UkZv->Sled = NULL;
cin >> el;
}
}
void Spisok::Postr()
//Постpоение деpева, содержащего все ребра графа.
{
int A,B,C;
cout << "For every nodes input input start and finish\n";
cout << "node and cost of edge:\n";
cin >> A >> B >> C;
while ( A!=0 )
{ Search (A,B,C,&Root);
cin >> A >> B >> C;
}
}
void Spisok::Poisk (svqz st, SubInt MENT, svqz *Res)
{
svqz q;