POJ-2001-Shortest Prefixes

字典树(Tri树)比较简单的一个题

代码:

#include
#include
#include
using namespace std;
const int maxn=1001;
const int maxm=10000;
int sz,cur,t[maxm][27],val[maxm];
char str[maxn][25];
void Insert(char *str)
{
    int len=strlen(str),u=0;
    for(int i=0;i


你可能感兴趣的:(ACM,POJ)