国家开放大学 / C语言程序设计
void Output(struct IntNode *f) //f为单链表的表头指针
{
if(!f) return;
while(f) {
printf("%d ",f->data);
f=f->next;
}
printf("
");
}
假定struct IntNode的类型定义为:
struct IntNode { int data; struct IntNode* next;};
函数功能:
{
if(!f) return;
while(f) {
printf("%d ",f->data);
f=f->next;
}
printf("
");
}
假定struct IntNode的类型定义为:
struct IntNode { int data; struct IntNode* next;};
函数功能:
参考答案: