• <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 左言 閱讀(2360) 評論(1)  編輯 收藏 引用

            Feedback

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

            国产午夜电影久久| 国产精品九九九久久九九| 久久精品无码一区二区三区免费| 亚洲一区中文字幕久久| 久久综合久久伊人| 亚洲精品乱码久久久久久蜜桃不卡 | 国产一区二区精品久久| 99久久精品国产综合一区| 亚州日韩精品专区久久久| 久久国产精品99国产精| 久久99精品九九九久久婷婷| 99久久精品免费看国产一区二区三区 | 久久久久久毛片免费播放| 91久久成人免费| 无码人妻久久一区二区三区免费丨| 久久久久一区二区三区| 久久久久久精品成人免费图片| 亚洲精品高清久久| 久久精品毛片免费观看| 亚洲人成电影网站久久| 精品久久久久久国产免费了| 久久国产精品成人影院| 伊人久久精品无码av一区| 久久无码国产| 九九久久精品无码专区| 久久亚洲高清观看| 国产亚洲欧美精品久久久| 久久久久久久久波多野高潮| 国内精品久久久久久久涩爱| 久久美女人爽女人爽| 久久99国产综合精品免费| 看久久久久久a级毛片| 99精品国产99久久久久久97 | 久久久久久亚洲精品影院| 国产免费久久久久久无码| 97超级碰碰碰碰久久久久| 成人久久综合网| 大伊人青草狠狠久久| 99久久这里只有精品| 青草影院天堂男人久久| 精品国产综合区久久久久久 |