赞
踩
题目如下:
裁判测试程序样例:
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-
- struct ListNode {
- char code[8];
- struct ListNode *next;
- };
-
- struct ListNode *createlist(); /*裁判实现,细节不表*/
- int countcs( struct ListNode *head );
-
- int main()
- {
- struct ListNode *head;
-
- head = createlist();
- printf("%d\n", countcs(head));
-
- return 0;
- }
-
- /* 你的代码将被嵌在这里 */
代码如下:
- int countcs( struct ListNode *head )
- {
- int result = 0;
- while(head)
- {
- if(head->code[1] == '0' && head->code[2] == '2')
- //从一串数字中获得具体某个位置的数字,使用head->code[索引]
- {
- result++;
- }
- head = head->next;
- }
- return result;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。