????????//可以改成注釋后面的嗎struct student * insert(struct student * head){? ? struct student *p0,*p1,*p2;? ? p0=(struct student * )malloc(sizeof(LEN));? ? printf("\n輸入所要插入節(jié)點的數(shù)據(jù):");? ? scanf("%ld,%f",&p0->num,&p0->score);? ? p1=head;? ? if(head==NULL)//if(p1==NULL)? ? {? ? ? head=p0;? ? ? p0->next=NULL;? ? }? ? else? ? if(p1->num>p0->num)? ? {? ? p0->next=head;//p0->next=p1;? ? head=p0;//head=p0;? ? }? ? else? ? {? ? while(p1!=NULL)? ? {? ? if(p1->num<p0->num)? ? {? ? p2=p1;? ? p1=p1->next;? ? }? ? else? ? {? ? p0->next=p1;? ? p2->next=p0;? ? break;? ? }? ? }? ? if(p1->next==NULL)? ? {? ? p0->next=NULL;? ? p2->next=p0;? ? }? ? ? ? }? ? return(head); ??}
鏈表的插入操作的疑問,可以改成注釋后面的嗎
溯源1
2017-02-03 11:05:44