国家开放大学 / 数据结构(本)
题干
设线性表为(16,20,26,24),以不带头结点的单向链表存储,链表头指针为head,以下程序的功能是输出链表中各结点中的数据域data。
struct node
{
int data;
struct node *next;
};
typedef struct node NODE;
#define NULL 0
void main()
{
NODE *head,*p;
p=head; /*p为工作指针*/
do
{
printf("%d
",);
;
}while();
}
反馈
(1)p->data
(2)p=p->next
(3)p!=NULL
参考答案:
佳题速递: