HDU 2087: 剪花布条

Posted rhythm-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2087: 剪花布条相关的知识,希望对你有一定的参考价值。

HDU 2087: 剪花布条

abcde a3 aaaaaa aa #
0 3
技术分享图片
#include <iostream>
#include <string>  
using namespace std;  
int main(){  
    int j,a;
    string str,temp;  
    while(cin>>str>>temp&&str[0]!=#)  {  
        a=j=0;
        for(int i=0;i<str.size();i++){  
            if(str[i]==temp[j]){  
                j++;  
                if(j==temp.length()){  
                    a++;  
                    j=0;  
                }  
            }  
            else{  
                i-=j;  
                j=0;  
            }  
        }  
        cout<<a<<endl;  
    }  
    return 0;  
}
View Code

 

以上是关于HDU 2087: 剪花布条的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2087 剪花布条

hdu2087剪花布条(KMP)

C - 剪花布条 HDU-2087

HDU 2087: 剪花布条

HDU 2087: 剪花布条

HDU2087 剪花布条(KMP)