下面函数的功能是将指针t2所指向的线性链表,链接到t1所指向的链表的末端。假定t1所指向的链表非空struct node{ float x;struct node *next;};connect(struct node *t1, struct node *t2){ if(t1->next==NULL)t1->next=t2;else connect(______ ,t2); }要实现此功能则应该添入的选项是
免费的网站请分享给朋友吧