发布网友 发布时间:2023-08-07 12:59
共5个回答
热心网友 时间:2023-09-14 05:57
for(p=head;p->next!=NULL;p=p->next) ; //循环检查,最后把p指向链表的最后一个节点。热心网友 时间:2023-09-14 05:57
for(p=head;p->next!=NULL;p=p->next) ;热心网友 时间:2023-09-14 05:58
在p指针指向的链表尾部插入一个新的节点q。热心网友 时间:2023-09-14 05:58
楼上说的对,在原链表尾部加入一个新节点:q节点热心网友 时间:2023-09-14 05:59
少点东西吧?确认一点东西没少吗?