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

            Feedback

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

            国产精久久一区二区三区| 国产精品久久久天天影视| 久久久久国色AV免费看图片| 久久国产精品二国产精品| 久久97久久97精品免视看| 2021国内精品久久久久久影院| 久久精品极品盛宴观看| 国产成人精品白浆久久69| 久久精品三级视频| 久久久久人妻一区精品色| 久久se精品一区二区影院| 久久精品人人做人人爽电影| 精品国产福利久久久| 久久久久久久久久久| 嫩草影院久久99| 亚洲精品国产第一综合99久久| 久久精品天天中文字幕人妻| 久久综合九色综合久99| 好久久免费视频高清| 99久久精品免费看国产一区二区三区| 久久久久亚洲av无码专区导航| 青青青青久久精品国产h久久精品五福影院1421 | 久久电影网2021| 久久无码中文字幕东京热| 国产精品gz久久久| 精品一区二区久久| 国产亚洲婷婷香蕉久久精品| 精品综合久久久久久98| 少妇熟女久久综合网色欲| 久久这里只有精品视频99| 色综合久久中文综合网| 久久被窝电影亚洲爽爽爽| 色妞色综合久久夜夜| 久久婷婷久久一区二区三区| 欧美熟妇另类久久久久久不卡| 久久久久波多野结衣高潮| 色悠久久久久久久综合网 | 亚洲精品乱码久久久久久蜜桃| 91精品国产综合久久香蕉 | 亚洲国产精品综合久久一线| 久久久久国产精品麻豆AR影院|