书山有径勤为路>>>>>>>>

<<<<<<<<学海无涯苦作舟!

链表的典型应用——字典树

题目:http://acm.swust.edu.cn/oj/problem/842/

这个题目是有一点复杂的,因为在存储内容的时候又再次用了链表。

可以说它是链表题目的相当典型的例子了。

 

还是直接上代码吧。

View Code
#include "iostream"
#include "cstring"
#include "string"
#include "cstdio"
#include "algorithm"
#include "malloc.h"
using namespace std;
typedef struct word{
    char Chn[4];
    struct word *next;
}word;
typedef struct node{
    int mark;
    word *str;
    struct node *next[26];
}node;
node *head;
void InitHead(){
    head = (node *)malloc(sizeof(node));
    head->mark = 0;
    head->str = NULL;
    memset(head->next, NULL, sizeof(head->next));
}
void Build(char *Eng, char *Chn){
    node *p = head;
    word *w;
    int i, k, Len = strlen(Eng);
    for(i=0; i<Len; i++){
        k = Eng[i]-'a';
        if(p->next[k]==NULL){
            p->next[k] = (node*)malloc(sizeof(node));
            p->next[k]->mark = 0;
            p->next[k]->str = NULL;
            memset(p->next[k]->next, NULL, sizeof(p->next[k]->next));
        }
        p = p->next[k];
        if(i==Len-1){
            p->mark = 1;
            if(p->str==NULL){
                p->str=(word*)malloc(sizeof(word));
                strcpy(p->str->Chn, Chn);
                p->str->next = NULL;
            }else{
                w = p->str;
                while(w->next!=NULL) w=w->next;
                w=w->next=(word*)malloc(sizeof(word));
                strcpy(w->Chn, Chn);
                w->next = NULL;
            }
        }
    }
}
char *Find(char *Eng, int n){
    int i, j, k, Len = strlen(Eng);
    node *p = head;
    word *w;
    for(i=0; i<Len; i++){
        k = Eng[i]-'a';
        p = p->next[k];
        if(p==NULL) return "NO";
        
        if(i==Len-1){
            if(p->mark==0) return "NO";
            w = p->str;
            for(j=1; j<n && w->next!=NULL; j++) w = w->next;
            return w->Chn;
        }
    }
}
int main(){
    char Eng[100], Chn[4];
    int n;
    InitHead();
    while(cin>>Eng){
        if(strcmp(Eng, "end")==0) break;
        cin>>Chn;
        Build(Eng, Chn);
    }
    while(cin>>Eng){
        if(strcmp(Eng, "end")==0) break;
        cin>>n;
        cout<<Find(Eng, n)<<endl;
    }
    return 0;
}

但是这里有一个十分蛋疼的现象:

就是你将上面代码中的所有char *改成string之后,

竟然会出现奇怪的现象,也就是什么什么冲突。

无语呀…………………………………………………………。

posted on 2012-04-26 20:08  More study needed.  阅读(260)  评论(0编辑  收藏  举报

导航

书山有径勤为路>>>>>>>>

<<<<<<<<学海无涯苦作舟!