• <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>

            qinzuoyan

              C++博客 :: 首頁 :: 聯系 :: 聚合  :: 管理
              8 Posts :: 0 Stories :: 16 Comments :: 0 Trackbacks

            常用鏈接

            留言簿(3)

            我參與的團隊

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

            實現這個函數:
            char* strrep(const char* src,  const char* from, const char* to)
            {
            }

            將src中出現的所有from替換成to
            時間:
            10分鐘。

            要求:
            1. 功能正確,盡量高效
            2.不能調用現有的正則表達式庫
            3.可以使用strdup,malloc,realloc等函數,以及其他的c字符串 操作函數
            4.估算你所寫算法的時間復雜度



            #include 
            <string.h>
            #include 
            <malloc.h>

            /**
             * On success, strrep() returns a newly allocated string, which is constructed by replacing all substring `from' in `src' with `to'.
             * If `from' is a null string(with length of 1), then return a duplication of `src'.
             *
             * On failure
             *   ENOMEM Insufficient memory is available.
             * 
             * src is a null-terminated string.
             * from is a null-terminated string.
             * to is a null-terminated string.
             * 
             
            */
            char* strrep(const char* src,  const char* from, const char* to)
            {
              
            char *des, *des_cur;
              
            int from_len, to_len, src_len, des_len;
              
            const char *src_cur, *src_end, *occ;
              
            const char **marks; 
              
            int mark_len, m, rep_count;
              
            // prepare
              from_len = strlen(from);
              to_len 
            = strlen(to);
              src_len 
            = strlen(src);
              
            if (from_len == 0)
                
            return strdup(src);
              
            // mark all occurence of `from' in `src'
              mark_len = 0x4;
              marks 
            = (const char**)malloc(sizeof(char** mark_len);
              
            if (marks == NULL)
                
            return NULL;
              rep_count 
            = 0;
              src_cur 
            = src;
              
            while((occ = strstr(src_cur, from)) != NULL) {
                rep_count
            ++;
                
            // need more space for mark
                if (rep_count > mark_len) {
                  mark_len 
            << 1;
                  marks 
            = (const char**)realloc(marks, mark_len);
                  
            if (marks == NULL)
                    
            return NULL;
                }
                
            // mark the position
                marks[rep_count - 1= occ;
                
            // find next occurence from the current position
                src_cur = occ + from_len;
              }
              
            // construct new string
              des_len = src_len + (to_len - from_len) * rep_count;
              des 
            = (char*)malloc(des_len + 1);
              
            if (des == NULL)
                
            return NULL;
              des_cur 
            = des;
              src_cur 
            = src;
              m 
            = 0;
              
            if (m < rep_count)
                occ 
            = marks[m];
              
            else
                occ 
            = NULL;
              
            while(*src_cur) {
                
            if (src_cur != occ)
                  
            *des_cur++ = *src_cur++;
                
            else {
                  
            // replace `from' with `to'
                  strncpy(des_cur, to, to_len);
                  src_cur 
            += from_len;
                  des_cur 
            += to_len;
                  
            // more to replace?
                  m++;
                  
            if (m < rep_count)
                    occ 
            = marks[m];
                  
            else
                    occ 
            = NULL;
                }
              }
              des_cur 
            = '\0';
              free(marks);
              
            return des;
            }


            posted on 2010-06-10 12:16 左言 閱讀(2361) 評論(1)  編輯 收藏 引用

            Feedback

            # re: 一道筆試題 - strrep()函數的實現[未登錄] 2010-06-11 10:58 expter
            KMp不就行了嗎?  回復  更多評論
              

            超级97碰碰碰碰久久久久最新| 91精品国产91热久久久久福利| 日本精品久久久久久久久免费| 激情久久久久久久久久| 久久精品国产欧美日韩99热| 亚洲午夜久久久久久久久久| 香港aa三级久久三级| 久久综合色老色| 91超碰碰碰碰久久久久久综合| 热久久视久久精品18| 国产精品成人久久久久久久| 一本色道久久99一综合| 久久se精品一区精品二区国产| 狠狠色婷婷久久一区二区| 国产精品九九久久免费视频| 亚洲精品tv久久久久久久久| 久久精品无码免费不卡| 国产一区二区三区久久精品| 久久久久国产精品人妻| 欧美与黑人午夜性猛交久久久| 久久香蕉国产线看观看精品yw | 久久精品国产亚洲AV影院| 国产69精品久久久久777| 国产A级毛片久久久精品毛片| 久久久99精品一区二区| 999久久久免费国产精品播放| 久久久国产精品亚洲一区| 97久久婷婷五月综合色d啪蜜芽| 久久av高潮av无码av喷吹| 88久久精品无码一区二区毛片| 久久99国产精品久久| 久久成人国产精品二三区| 精品久久香蕉国产线看观看亚洲| 亚洲成色www久久网站夜月| 无码AV中文字幕久久专区| 伊人久久大香线蕉亚洲五月天| 要久久爱在线免费观看| 2021国内精品久久久久久影院| 三级三级久久三级久久| 久久久久亚洲精品日久生情| 伊人久久大香线蕉av一区|