[填空题] 下面程序的功能是建立一个有3个结点的单循环链表,然后求各个结点数值域data中数据的和,请填空。 #include <stdio.h> #include <stdlib.h>
17 查阅
[填空题] 下面程序的功能是建立一个有3个结点的单循环链表,然后求各个结点数值域data中数据的和,请填空。
#include <stdio.h>
#include <stdlib.h>
struct NODE int data;
struct NODE *next; ;
void main()
struct NODE *p,*q,*r;
int sum=0;
p=(struct NODE *)malloc(sizeof(struct NODE));
q=(struct NODE *)malloc(sizeof(struct NODE));
r=(struct NODE *)malloc(sizeof(struct NODE));
p->data=100;q->data=200;r->data=300;
p->next=q; q->next=r;r->next=p;
sum=p->data+p->next->data+r->next->next->______:
printf("%d", sum);
参考答案: