C 題 KMP中next[]問題

來源:互聯網
上載者:User

標籤:style   blog   color   os   io   for   問題   div   

題目大意:

找到能夠進行字串匹配的首碼

 

這題只要一直求next,直到next為0停止,記得答案是總長減去next的長度

 

 

 1 #include <iostream> 2 #include <cstdio> 3 #include<string> 4 using namespace std; 5  6 #define N 1000100 7 int a[N],b[N],next[N]; 8 int m; 9 void getNext(){10     next[0]=0;11     next[1]=0;12     for(int i=1;i<m;i++){13         int j=next[i];14         while(b[j]!=b[i]&&j) j=next[j];15         if(b[j]==b[i]) next[i+1]=j+1;16         else next[i+1]=0;17     }18 }19 20 int main()21 {22     int T,count;23     cin>>T;24     string s;25     for(int i=1;i<=T;i++){26         cin>>s;27         m=s.length(),count=0;28         int t=m;29         for(int k=0;k<m;k++) b[k]=s.at(k);30         getNext();31         //a[count++]=m;32 33         while(next[m])34         {35             a[count++]=t-next[m];36             m=next[m];37         }38         cout<<"Case #"<<i<<": "<<count+1<<endl;39         for(int i=0;i<count;i++) cout<<a[i]<<‘ ‘;40         cout<<t<<endl;41     }42     return 0;43 }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.