2013年3月28日
摘要: virtual judge 树 A题 1 #include 2 #include 3 #include 4 struct node 5 { 6 int flag; 7 struct node *next[26]; 8 }; 9 struct node *creat()10 {11 struct node *p;12 p=(struct node *)malloc(sizeof(struct node));13 for(int i=0;inext[i]=NULL;15 p->flag=1;16 return p;17 }18 void i... 阅读全文
posted @ 2013-03-28 20:23 straw_berry 阅读(203) 评论(0) 推荐(0) 编辑