Курсовая работа: Інформаційно-довідкова система
list.m[i]=list.m[i+1];
}
list.count--;
refresh_list();
}
}
void sort_list(int vub)
{
value tmpv;
if (vub==0)
{
for (int i=0;i<=list.count;i++)
{
for (int j=0;j<=list.count;j++)
{
if (strcmp(list.m[i].name,list.m[j].name)<0)
{
tmpv=list.m[i];
list.m[i]=list.m[j];
list.m[j]=tmpv;
}
}
}
}
if (vub==1)
{
for (int i=0;i<=list.count;i++)
{
for (int j=0;j<=list.count;j++)