填空題下列函數(shù)用于向一非空鏈表插入節(jié)點(由stud指向),鏈表按照節(jié)點no域的升序排列。structtabinsert(structtab*head,structtab*stud){structtab*p0,*p1,*p2;p1=head;p0=stud;while((p0->no>p1->no)&&()){p2=p1;p1=p1->next;}if(p0->no<=p1->no)if(head==p1){p0->next=head;head=p0;}else{p2->next=p0;}else{p1->next=p0;}return(head);}

您可能感興趣的試卷

你可能感興趣的試題