问题 更新时间2023/5/15 14:01:00 int Count(struct IntNode *f) { //f为指向一个单链表的表头指针 int c=0; while(f) { c++; f=f->next; } return c; } 假定struct IntNode的类型定义为: struct IntNode {int data; IntNode* next;};简答题 (5 分) 答案 登录 注册 统计出以指针表头为f的链表中的结点个数 出自:安徽教育在线 >> 国家开放大学C语言程序设计