• <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 付翔 閱讀(116) 評論(0)  編輯 收藏 引用 所屬分類: ACM 數據結構

            <2010年7月>
            27282930123
            45678910
            11121314151617
            18192021222324
            25262728293031
            1234567

            常用鏈接

            留言簿(2)

            隨筆分類

            隨筆檔案

            文章分類

            文章檔案

            CSDN - 我的blog地址

            博客

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

            久久久久久精品无码人妻| 大蕉久久伊人中文字幕| 亚洲国产成人久久综合一区77| 亚洲一区中文字幕久久| 久久久久综合中文字幕| 2021久久精品免费观看| 久久综合给久久狠狠97色| 嫩草影院久久国产精品| 一本久久精品一区二区| 波多野结衣AV无码久久一区| 久久91精品国产91久久麻豆| 欧美一级久久久久久久大片| 国产精品久久久久久| 久久天天躁狠狠躁夜夜2020老熟妇 | 久久久久亚洲精品天堂久久久久久| 一级a性色生活片久久无少妇一级婬片免费放| 2021国产精品午夜久久| 热久久国产精品| 奇米综合四色77777久久| 久久综合成人网| www亚洲欲色成人久久精品| 一本色综合久久| 国产呻吟久久久久久久92| 久久久国产精品亚洲一区| 欧美日韩精品久久免费| 99久久久久| 中文字幕亚洲综合久久| 波多野结衣中文字幕久久| 日本WV一本一道久久香蕉| 久久99国产精品成人欧美| 国内精品久久久久| 国产精品99久久免费观看| 久久中文骚妇内射| 色妞色综合久久夜夜| 99久久精品国产一区二区| 久久婷婷色香五月综合激情| 亚洲国产天堂久久综合| 伊人久久无码精品中文字幕| 久久国产精品一区| 欧美粉嫩小泬久久久久久久| 久久久久久亚洲精品无码|