码迷,mamicode.com
首页 > 其他好文 > 详细

oj2892(字典树)

时间:2014-06-24 14:31:01      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   ext   color   string   代码   for   

一改时间以后WA了,我就知道这题是考字典树,可惜代码怎么也不会敲了,郁闷。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct Node
{
    int flag;
 struct Node *next[26];

}Node,*Tree;
char a[200010][6];
int n,m;
int sum=0;
void Creat(Tree &T)
{
    int i;
 T=(Tree)malloc(sizeof(Node));
 T->flag=0;
 for(i=0;i<26;i++)
  T->next[i]=NULL;
}
void insert(Tree &T,char *s)
{
   int l,i,t;
   Tree p=T;
   l=strlen(s);
   for(i=0;i<l;i++)
   {
   t=s[i]-‘a‘;
  if(p->next[t]==NULL)
   Creat(p->next[t]);
     p=p->next[t];

   }
   p->flag++;
   if(sum<p->flag)
    sum=p->flag;

}
void Delete(Node *p)
{
    int i;
    for(i=0; i<26; i++)
    {
        if(p->next[i]!=NULL)
            Delete(p->next[i]);
    }
    free(p);

}

int main()
{
    int i;
 Tree T;
 while(scanf("%d",&n)!=EOF)
 {
       Creat(T);
    sum=0;
    for(i=0;i<n;i++)
    {
       scanf("%s",a[i]);
    insert(T,a[i]);
    }
    printf("%d\n",sum);
       Delete(T);

 }
 return 0;
}

 

 

 

oj2892(字典树),布布扣,bubuko.com

oj2892(字典树)

标签:style   ext   color   string   代码   for   

原文地址:http://www.cnblogs.com/zhangmingcheng/p/3804890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!