标签:bool ++ turn als pre 字符串 false lse return
int trie[SIZE][26], tot=1;//初始化,假设字符串由小写字母构成 bool ed[SIZE]; void ins(char *str) { int len=strlen(str),p=1; for(int k=0;k<len;k++) { int ch=str[k]-‘a‘; if(trie[p][ch]==0) trie[p][ch]=++tot; p=trie[p][ch]; } ed[p]=true; } bool sea(char *str) { int len=strlen(str),p=1; for(int k=0;k<len;k++) { int ch=str[k]-‘a‘; p=trie[p][ch]; if(p==0) return false; } return ed[p]; }
标签:bool ++ turn als pre 字符串 false lse return
原文地址:https://www.cnblogs.com/ChildeZhe/p/12209978.html