摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1247View Code 1 #include<stdio.h> 2 #include<string.h> 3 #include<stdlib.h> 4 char c[50010][110] ; 5 struct node 6 { 7 int flag ; 8 struct node *next[26] ; 9 };10 struct node *creat()11 {12 int i ;13 struct node *p ;14 p = (struct node*)... 阅读全文
posted @ 2013-02-20 19:42 yelan@yelan 阅读(167) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=1500&cid=1147View Code 1 #include<stdio.h> 2 #include<string.h> 3 #include<malloc.h> 4 int num ; 5 struct node 6 { 7 int flag; 8 struct node *next[26]; 9 };10 struct node *creat()11 {12 int i;13 struct node *p;14 p=(struct nod.. 阅读全文
posted @ 2013-02-20 13:46 yelan@yelan 阅读(164) 评论(0) 推荐(0) 编辑