插入结点的函数insert如下-结构体和共同体

时间:2024-05-15 20:41:20
【文件属性】:

文件名称:插入结点的函数insert如下-结构体和共同体

文件大小:489KB

文件格式:PPT

更新时间:2024-05-15 20:41:20

共同体

插入结点的函数insert如下: struct student *insert(struct student *head,struct student *stud) { struct student*p0,*pl,*p2; p1=head; /*p1指向第一个结点*/ p0=stud; /*p0指向要插入的结点*/ if(head==NULL) /*原来是空表*/ { head=p0; p0->next=NULL; } /*使p0指向的结点作为链表第一个结点*/


网友评论