04 2009 档案
zjfc1080-----2^x mod n = 1
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#include int process(int i,int n) { long t=2,d=1; while(i){ if(i%2==1) ... 阅读全文
posted @ 2009-04-30 23:59 pandy 阅读(269) 评论(2) 推荐(0)
zjfc---1078 排序
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#include #include #include char s[1010]; char c[]="5"; char *p; int a[1010]; int cmp(const void *... 阅读全文
posted @ 2009-04-30 23:17 pandy 阅读(204) 评论(0) 推荐(0)
zjfc----1076 online judge 对多行字符串输入做处理
摘要:题目描述 Ignatius is building an Online Judge, now he has worked out all the problems except the Judge System. The system has to read data from correct output file and user's result file, then the syste... 阅读全文
posted @ 2009-04-30 21:58 pandy 阅读(352) 评论(0) 推荐(0)
strtok和sscanf
摘要:strtok------ 功能:分解字符串为一组标记串。s为要分解的字符串,delim为分隔符字符串。 说明:首次调用时,s必须指向要分解的字符串,随后调用要把s设成NULL。 strtok在s中查找包含在delim中的字符并用NULL('\0')来替换,直到找遍整个字符串。 返回指向下一个标记串。当没有标记串时则返回空字符NULL。 Example... 阅读全文
posted @ 2009-04-30 14:37 pandy 阅读(312) 评论(0) 推荐(0)
pku2352--stars---树状数组
摘要:题目简单介绍: 天空中有一些星星,这些星星都在不同的位置,每个星星有个坐标。 如果一个星星的左下方(包含正左和正下)有k颗星星,就说这颗星星是k级的。 求出各个级别的星星的个数。 首先,引入树状数组,文章摘自http://fqq11679.blog.hexun.com/21722866_d.html 【引言】 在解题过程中,我们有时需要维护一个数组的前缀和S[i]=A[1... 阅读全文
posted @ 2009-04-23 00:09 pandy 阅读(645) 评论(0) 推荐(0)