• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            付翔的專欄
            在鄙視中成長 記錄成長的點滴
            posts - 106,  comments - 32,  trackbacks - 0
            #include<stdio.h>
            #include
            <string.h>
            #include
            <ctype.h>
            struct TreeNode //結點
            {
                
            char EN_word[25];
                TreeNode 
            *next[26];
                TreeNode()
            //構造函數做初始化
                {
                    EN_word[
            0]='\0';
                    
            for(int i=0;i<26;i++) next[i]=NULL;
                }
                
            ~TreeNode()//析構函數做善后工作
                {
                    
            for(int i=0;i<26;i++)
                        
            if(next[i]!=NULL) delete next[i];
                }
            };
            void insert(TreeNode *&root,const char *EN_word,const char * MA_word)//插入結點
            {
                TreeNode 
            * loca=root;
                
            int i=0,ban=0;
                
            if(loca==NULL){loca = new TreeNode();root=loca;}
                
            int len=strlen(MA_word);
                
            while(MA_word[i])
                {
                    ban
            =MA_word[i]-'a';
                    
            if(!loca->next[ban])
                    {
                        loca
            ->next[ban]=new TreeNode();
                        
            if(i==len-1)//判斷是否最后一個字符,附加信息放在這里
                            strcpy(loca->next[ban]->EN_word,EN_word);
                    }
                    i
            ++;
                    loca
            =loca->next[ban];
                }
            }
            bool search(TreeNode *&root,const char * MA_word)
            {
                TreeNode 
            * loca=root;
                
            int i=0,ban=0;
                
            char ans[25];
                
            int len=strlen(MA_word);
                
            if(MA_word[0== ' 'return 0;
                
            if(MA_word[0== '\n'return 0;
                
            while(MA_word[i])
                {
                    ban
            =MA_word[i]-'a';
                    
            if(!loca->next[ban])
                        
            return 0;
                    loca 
            = loca->next[ban];
                    i 
            ++;
                }

                strcpy(ans,loca
            ->EN_word);
                
            if(ans[0== '\0'return 0;
                printf(
            "%s",ans);
                
            return 1;
            }
            int main()
            {
                freopen(
            "in.txt","r",stdin);
                
            int n,i;
                
            char c;
                
            char str1[25],str2[25];
                
            struct TreeNode *headNode = NULL;
                
            while(true)
                {
                    scanf(
            "%s",str1);
                    
            if(strcmp(str1,"END")==0)  break;
                    
            if(strcmp(str1,"START")==0continue;
                    scanf(
            "%s",str2);
                    insert(headNode,str1,str2);

                }
                getchar();
                gets(str2);
                i 
            = 0;
                
            while(true)
                {
                    c 
            = getchar();
                    
            if(c =='E'break;
                    
            /*while((c=getchar() ) && islower(c))
                        str1[++i] = c;
            */
                    
            while(1)// 只是這里在處理字符串的時候 樣例過了 但是提交報內存錯誤
                    {
                        str1[i
            ++= c;
                        c 
            = getchar();
                        
            if(!islower(c))
                        {
                            str1[i] 
            = '\0';
                            
            break;
                        }
                    }
                    
            if(search(headNode,str1)==0) printf("%s",str1);
                    
            if(c != 'E')printf("%c",c);
                    
            if(c =='E'break;
                    i 
            = 0;
                    
                }
                
            return 0;
            }

            下面的是正確的
            #include<stdio.h>
            #include
            <string.h>
            #include
            <ctype.h>
            struct TreeNode //結點
            {
                
            char EN_word[25];
                TreeNode 
            *next[26];
                TreeNode()
            //構造函數做初始化
                {
                    EN_word[
            0]='\0';
                    
            for(int i=0;i<26;i++) next[i]=NULL;
                }
                
            ~TreeNode()//析構函數做善后工作
                {
                    
            for(int i=0;i<26;i++)
                        
            if(next[i]!=NULL) delete next[i];
                }
            };
            void insert(TreeNode *&root,const char *EN_word,const char * MA_word)//插入結點
            {
                TreeNode 
            * loca=root;
                
            int i=0,ban=0;
                
            if(loca==NULL){loca = new TreeNode();root=loca;}
                
            int len=strlen(MA_word);
                
            while(MA_word[i])
                {
                    ban
            =MA_word[i]-'a';
                    
            if(!loca->next[ban])
                    {
                        loca
            ->next[ban]=new TreeNode();
                        
            if(i==len-1)//判斷是否最后一個字符,附加信息放在這里
                            strcpy(loca->next[ban]->EN_word,EN_word);
                    }
                    i
            ++;
                    loca
            =loca->next[ban];
                }
            }
            bool search(TreeNode *&root,const char * MA_word)
            {
                TreeNode 
            * loca=root;
                
            int i=0,ban=0;
                
            char ans[25];
                
            int len=strlen(MA_word);
                
            if(MA_word[0== ' 'return 0;
                
            if(MA_word[0== '\n'return 0;
                
            while(MA_word[i])
                {
                    ban
            =MA_word[i]-'a';
                    
            if(!loca->next[ban])
                        
            return 0;
                    loca 
            = loca->next[ban];
                    i 
            ++;
                }

                strcpy(ans,loca
            ->EN_word);
                
            if(ans[0== '\0'return 0;
                printf(
            "%s",ans);
                
            return 1;
            }
            int main()
            {
                freopen(
            "in.txt","r",stdin);
                
            int n,i;
                
            char c;
                
            char str1[25],str2[25];
                
            struct TreeNode *headNode = NULL;
                
            while(true)
                {
                    scanf(
            "%s",str1);
                    
            if(strcmp(str1,"END")==0)  break;
                    
            if(strcmp(str1,"START")==0continue;
                    scanf(
            "%s",str2);
                    insert(headNode,str1,str2);

                }
                getchar();
                gets(str2);
                i 
            = 0;
                
            while(true)
                {
                    c 
            = getchar();
                    
            if(c =='E'break;
                    
            /*while((c=getchar() ) && islower(c))
                        str1[++i] = c;
            */
                    str1[i
            ++= c;
                    
            if(c < 'a' || c > 'z')
                    {
                        str1[i
            -1= '\0';
                        
            if(search(headNode,str1)==0) printf("%s",str1);
                        
            if(c != 'E')printf("%c",c);
                        
                         i 
            = 0;
                    }
                    
                    
            //i++;
                    
                }
                
            return 0;
            }

            posted on 2010-07-19 10:21 付翔 閱讀(120) 評論(0)  編輯 收藏 引用 所屬分類: ACM 數據結構

            <2010年10月>
            262728293012
            3456789
            10111213141516
            17181920212223
            24252627282930
            31123456

            常用鏈接

            留言簿(2)

            隨筆分類

            隨筆檔案

            文章分類

            文章檔案

            CSDN - 我的blog地址

            博客

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

            久久久久久伊人高潮影院| 久久久黄片| 国产成人精品综合久久久| 狠狠久久综合伊人不卡| 亚洲综合精品香蕉久久网| 国产69精品久久久久99尤物| 波多野结衣久久一区二区| 精品久久久久久久无码| 天天做夜夜做久久做狠狠| 久久一日本道色综合久久| 久久99精品久久久久久秒播| av无码久久久久久不卡网站| 中文精品99久久国产| 久久99精品久久久久久野外| 97精品伊人久久久大香线蕉| 久久久久亚洲AV无码专区桃色| 亚洲精品无码久久久久| 久久无码国产| 国内精品久久久久久久影视麻豆| 久久久久亚洲精品天堂| 欧美国产成人久久精品| 伊人热热久久原色播放www| 亚洲一本综合久久| 久久综合综合久久97色| 久久亚洲国产精品成人AV秋霞 | 久久亚洲中文字幕精品一区四| 国产亚洲欧美精品久久久| 久久精品国产色蜜蜜麻豆| 欧美国产精品久久高清| 人妻精品久久久久中文字幕| 久久97久久97精品免视看| 久久久精品视频免费观看| 国产成人久久777777| 久久免费香蕉视频| 久久久久国色AV免费观看| 久久免费国产精品| 国产成人精品综合久久久| 老色鬼久久亚洲AV综合| 国产精品一区二区久久国产| 精品国产一区二区三区久久| 91精品无码久久久久久五月天 |