[求助]链表.??
这是链表的的个插入函数,看了半天都不明白函数里面的 q 起了什么作用. 大侠告诉下啊.麻烦尽量说详细点哦..! 一共出现了两次..
S *add(S *head,S *new)
{
S *p,*q,*head;
p=q=head;
if(head==0)
{ head=new; new->next=0 return head; };
else
while((new->num>p->num)&&(p->next!=0)
{ q=p; p=p->next; }
if(new->num<p->num)
{
if(p==head) { head=new; new->next=p; }
else { q->next=p->next new->next=p; }
}
else
{ p->next=new; new->next=0;}
return head;
}