皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
下列给定,函数fun的功能是:计算一个带头结点的单向链表中各结点的数据域中数值之和,结果作为函数值返回。 请选择在下画线处填入正确的语句,使程序得出正确的结果。 #include #include #define N 8 typedef struct list { int data; struct list *next; } SLIST; SLIST *creatlist(int *); void outlist(SLIST *); int fun( SLIST *h) { SLIST *p; int s=0; p=h->next; while(p) { s+= p->data; p=p->next; } return s; } main() { SLIST *head; int a[N]={12,87,45,32,91,16,20,48}; head=creatlist(a); outlist(head); /**********found**********/ printf("\nsum=%d\n", fun(______)); } SLIST *creatlist(int a[]) { SLIST *h,*p,*q; int i; h=p=(SLIST *)malloc(sizeof(SLIST)); for(i=0; i { q=(SLIST *)malloc(sizeof(SLIST)); q->data=a[i]; p->next=q; p=q; } p->next=0; return h; } void outlist(SLIST *h) { SLIST *p; p=h->next; if (p==NULL) printf("The list is NULL!\n"); else { printf("\nHead "); do { printf("->%d", p->data); p=p->next; } while(p!=NULL); printf("->End\n"); } }
A.
next
B.
head
C.
0
D.
data
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【判断题】磁电感应式传感器可分为变磁通式和恒磁通式两大类。()
A.
正确
B.
错误
【判断题】磁电感应式传感器是速度传感器。
A.
正确
B.
错误
【单选题】规定着一个国家各级、各类学校教育的系统,包括各级各类学校的性质、任务、入学条件、修业年限以及它们之间的关系的制度叫( )。
A.
学制
B.
学校教育
C.
正规教育
D.
制度化教育
【简答题】规定着一个国家各级、各类学校教育的系统,包括各级各类学校的性质、人物、人学条件、修业年限及其关系的制度叫__________。
【简答题】根据电磁感应原理,磁电感应式传感器分为变磁通式和()式。
【简答题】Fill in the blanks with the right words or phrases. Change the form where necessary. promotion customers take advantage of potential demand target approach feedback ...
【单选题】有人说,凡是知识都是科学的,凡是科学都是无颜色的,并且在追求知识时,我们要知道没有颜色的态度,假使这种说法不随意扩大,我也认同,但我们要知道,只要是一个活生生的人,便必然有颜色。对无颜色知识的追求,必定潜伏着一种有颜色的力量,在后面或底层加以推动。这一推动力量,不仅决定一个人追求知识的方向与成果,也决定一个人对知识是否真诚。 这段文字中“有颜色的力量”指的是( )。
A.
研究态度
B.
价值取向
C.
道德水准
D.
兴趣爱好
【单选题】间歇热最常见的疾病是
A.
渗出性胸膜炎
B.
斑疹伤寒
C.
疟疾
D.
风湿热
E.
败血症
【简答题】1) To protect our environment, we should use _________ fuels. 2) It is essential to rebuild the __________ of a modern market economy. 3) Developing a(n) _________ aircraft is quite an accomplis...
【简答题】She filled out a(n) _____ for the post.2. Good speakers can be very _____.3. The robber tried to _____ her with a knife.4. There is a(n)_____ shortage of food in this country.5. I am quite safe. T...
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题