以下函数的功能是输出链表结点中的数据,形参指针h已知向如下链表请填空。 struct slist {char data;struct slist *next;}; void fun(struct slist *h) { struct slis *P;

admin2013-06-11  59

问题 以下函数的功能是输出链表结点中的数据,形参指针h已知向如下链表请填空。
struct slist {char  data;struct slist *next;};
void fun(struct slist *h)
{  struct slis *P;
   p=h;
   while(p)
   {printf("%c",p->data);p=________;}
   printf("\n");
}

选项

答案p=p->next

解析 fun函数是输出链表的所有值,移动指针p让它指向下一个结点,使用固定格式p=p->next。
转载请注明原文地址:https://jikaoti.com/ti/DWn0FFFM
0

最新回复(0)