上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: Problem Description输入n(n 2 #define maxsize 100 3 int qiuzuixiao(int a[],int n){ 4 int min=*a; 5 int k=0; 6 for(int i=1;ia[i]){ 8 ... 阅读全文
posted @ 2016-01-27 13:18 织猫 阅读(472) 评论(0) 推荐(0) 编辑
摘要: Problem Description对于给定的一个字符串,统计其中数字字符出现的次数。Input输入数据有多行,第一行是一个整数n,表示测试实例的个数,后面跟着n行,每行包括一个由字母和数字组成的字符串。Output对于每个测试实例,输出该串中数值的个数,每个输出占一行。Sample Input2... 阅读全文
posted @ 2016-01-27 13:11 织猫 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 线性表是最常用也是最简单的一种数据结构,一个线性表是n个数据元素的有限序列。线性表的基本结构:1 typedef struct xianxing{2 int length;3 int *data;4 }L;其中int *data也可以换成是一个数组,如int ... 阅读全文
posted @ 2016-01-26 20:27 织猫 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 先看代码吧,学习c语言结构体中看到的一个问题#includeint main(){ struct{ int a:2; }x; x.a=1; x.a=x.a+1; printf("%d\n",x.a); return 0;}输出结果是-2,一开始很意外... 阅读全文
posted @ 2016-01-25 15:14 织猫 阅读(146) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionGiven a string containing only 'A' - 'Z', we could encode it using the following method:1. Each sub-string containing k same charac... 阅读全文
posted @ 2016-01-12 21:53 织猫 阅读(491) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页