Input The input contains at least two, but no more than 1000 lines. Each line contains one word consisting of 1 to 20 lower case letters. Output The output contains the same number of lines as the input. Each line of the output contains the word from the corresponding line of the input, followed by one blank space, and the shortest prefix that uniquely (without ambiguity) identifies this word. Sample Input
carbohydrate cart carburetor caramel caribou carbonic cartilage carbon carriage carton car carbonateSample Output
carbohydrate carboh cart cart carburetor carbu caramel cara caribou cari carbonic carboni cartilage carti carbon carbon carriage carr carton carto car car carbonate carbona字典树,经典题,求最短唯一前缀。 题意: 给你若干个单词的字典,求字典中每一个单词的最短唯一前缀。 最短唯一前缀:找出这个单词中的一个前缀,要求这个前缀只在这个单词中出现过,并且要求这个前缀最短。 思路: 实际上就是找字典树中 前缀数域 为1的位置,输出到这个位置为止的字符串。 字典树这样定义,26个指向下一个位置的指针,1个num域,这个num代表以当前字符串为前缀的单词的数量。 这样只要找到num==1的位置即可(到这个位置只有一个单词通过,说明到当前位置为止的字符串是唯一的)。
#include<iostream> #include<string.h> #include<stdio.h> using namespace std; struct node { node *nxt[26]; int flag; node() { for(int i=0; i<26; i++) nxt[i]=NULL; flag=0; } }; node *root; char word[1001][31]; void init() { root=new node(); } void isert(char a[]) { node *now; now=root; int len=strlen(a); for(int i=0;i<len;i++) { int to=a[i]-'a'; if(now->nxt[to]==NULL) now->nxt[to]=new node(); now=now->nxt[to]; now->flag++; } } void fid(char a[]) { node *now=root; for(int i=0;a[i];i++) { int to=a[i]-'a'; if(now->nxt[to]==NULL) return ; now=now->nxt[to]; cout<<a[i]; if(now->flag==1) return ; } } void del(node *head) { for(int i=0;i<26;i++) { if(head->nxt[i]) del(head->nxt[i]); } delete head; } int main() { int sizee=1; init(); while(scanf("%s",word[sizee])!=EOF) { isert(word[sizee++]); } for(int i=1;i<sizee;i++) { cout<<word[i]<<" "; fid(word[i]); cout<<endl; } return 0; }