摘要:
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*)... 阅读全文
摘要:
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.. 阅读全文