KMP挖坑

P串是不動的,S會移動,起始位置爲0,i比j大幾次,就移動幾次,從而S就從0移動幾次作爲初始 //KMP暴力做法 int solve(char P[],int n,char S[],int m) //P爲模式串,S爲主串 { int count=0,count1=0,i,j; for(i=0;i+n<=m;i++) //循環終止條件是「你可以挨着個查,但你不能超範圍」 { co
相關文章
相關標籤/搜索