void main() { TList<TMonom> st; TMonom monom; cout << "Тестирование списка" << endl; for ( int i=0; i<5; i++ ) { monom.SetCoeff(i); monom.SetIndex(10*i); st.InsValue(monom); // очередь // st.InsValue(monom,FIRST); // стек // st.InsValue(monom,LAST); // очередь cout << "Положили в список значение " << monom.GetCoeff() << "; " << monom.GetIndex() << " Код " << st.GetRetCode() << endl; } // печать списка for ( st.Reset(); !st.IsListEnded(); st.GoNext() ) { monom = st.GetValue(); cout << "Взяли из списка значение " << monom.GetCoeff() << "; " << monom.GetIndex() << " Код " << st.GetRetCode() << endl; } st.DelList(); cout << "Нажмите любую клавишу" << endl; getch(); }