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

            Problem Solving using C++

            Algorithm Study using C++

            字符串匹配算法(2)---String Matching Algorithm

            前面已經說到了naive的方法來匹配字符串,但是該方法的特點是復雜度高,未能充分利用計算得到的值作為下一步計算的結果,因此,復雜度相當比較高。
            Rabin-Karp提出了新的字符串匹配方法:
            Rabin-Karp方法主要是分2部分:
            (1)預處理(pre-processing)
            對pattern字符串的m個進行計算,得到其hash值。 復雜度為O(m)
            (2)匹配(matching)
            for(int i=0;i<n-m;i++)
            {
                計算t[i..i+m]的hash值。
                再同pattern字符串的hash值進行對比,如果相同,則使用naive辦法,繼續一個字符一個字符地比較。
                使用Horner法則計算下一個m字符的hash值。(即h(s+1)=f(h(s))).
            }
            整個算法的復雜度:
            在最差的情況下,復雜度為O(m)+O(m*(n-m+1))
            期望的情況為O(n-m+1+cm)=O(n+m).

            實驗代碼如下:(暫時只是考慮支持12345678901234567890 匹配 234等的情況)
             1 #include <iostream>
             2 #include <string>
             3 
             4 using namespace std;
             5 
             6 #define Q    997 //Should be a prime
             7 #define D    10    //|sizeof character set|
             8 
             9 inline int geth(int m)//h=d^(m-1)%q
            10 {
            11     int len=1;
            12     for(int i=0;i<(m-1);i++)
            13     {
            14         len*=D;
            15     }
            16     return len%Q;
            17 }
            18 
            19 int main(int argc,char* argv[])
            20 {
            21     char *t=NULL,*p=NULL;
            22     string text,pattern;
            23     int h,p0=0,t0=0;
            24 
            25     while(1)
            26     {
            27         int index = 0;
            28 
            29         cin>>text>>pattern;
            30         int n = text.length();        
            31         int m = pattern.length();
            32 
            33         //t= new char[n+1];
            34         //p= new char[m+1];
            35         t= new char[n];
            36         p= new char[m];
            37 
            38         h = geth(m);
            39         p0=t0=0;
            40 
            41         //strcpy(t,text.c_str());
            42         //strcpy(p,pattern.c_str());
            43         memcpy(t,text.data(),n);
            44         memcpy(p,pattern.data(),m);
            45 
            46         for(int i=0;i<m;i++)//get the initial value from pattern and text
            47         {
            48             p0 =(D*p0+(p[i]-'0'))%Q;
            49             t0 = (D*t0+(t[i]-'0'))%Q;
            50         }
            51 
            52         for(int i=0;i<(n-m);i++)
            53         {
            54             if(p0==t0)//should call the naive algorithm to check whether the two string is the same
            55             {
            56                 bool match = true;
            57                 for(int j=0;j<m;j++)
            58                 {
            59                     if(p[j]!=t[i+j])
            60                         match = false;
            61                 }
            62 
            63                 if(match)
            64                     cout<<i<<endl;
            65             }
            66 
            67             t0 = ((D*(t0-(t[i]-'0')*h)+t[i+m])-'0')%Q;
            68         }
            69 
            70         delete[] t;
            71         delete[] p;
            72     }
            73 
            74     system("pause");
            75     return 0;
            76 }
            77 


            posted on 2007-08-20 21:11 Kingoal Lee's Alogrithm Study using cplusplus 閱讀(467) 評論(0)  編輯 收藏 引用

            My Links

            Blog Stats

            常用鏈接

            留言簿(1)

            隨筆檔案

            搜索

            最新評論

            閱讀排行榜

            評論排行榜

            久久天天躁狠狠躁夜夜躁2014| 国产精品乱码久久久久久软件 | 亚洲精品乱码久久久久久自慰| 无码精品久久久久久人妻中字| 亚洲狠狠久久综合一区77777| 亚洲v国产v天堂a无码久久| 韩国免费A级毛片久久| 无码任你躁久久久久久老妇App| 国产精品久久久久天天影视| 久久久精品人妻一区二区三区蜜桃| 狠狠色丁香久久婷婷综合蜜芽五月 | 亚洲精品国产自在久久| 久久久久国产精品嫩草影院| 精品人妻伦九区久久AAA片69| 久久精品国产免费| 久久久久人妻一区精品色| 一级A毛片免费观看久久精品| 久久久91人妻无码精品蜜桃HD| 日韩欧美亚洲综合久久影院d3| 国产午夜精品理论片久久影视 | 久久国产劲爆AV内射—百度| 国产精品内射久久久久欢欢| 国产免费福利体检区久久| 少妇被又大又粗又爽毛片久久黑人| 精品久久久久久无码中文字幕| 国产成人精品久久综合| 国内精品欧美久久精品| 国产成人综合久久综合| 久久综合精品国产一区二区三区 | 久久黄视频| 少妇内射兰兰久久| 久久久精品波多野结衣| 久久免费线看线看| 国产麻豆精品久久一二三| 伊人久久一区二区三区无码| 66精品综合久久久久久久| 久久久精品人妻一区二区三区蜜桃| 久久99国产精品成人欧美| 久久99国内精品自在现线| 精品久久久久久无码专区不卡| 久久国产色AV免费看|