Реферат: Объектно ориентированое програмирование на С
if(f==1) current=last;
if(f==2)
{
del_list();
first=new element[1];
first->info=new char[strlen(str)+3];
sprintf(first->info,"%s 1",str);
first->up=first->down=NULL;
current=last=first;
};
for (int j=f; j<=k; j++)
{
sprintf(s,"%s %d",str,j);
add_after(s);
};
return;
};
void list::print_list()
{
cout<<"Vmestimoe spiska:\n";
element* temp=first;
if (first==NULL)
{
cout<<"Spisok pust!!!\n";
return;
};
do
{
cout<<"| "<<temp->info<<" |";