XDU 1140 寻找万神(字符串匹配)
学会strstr的使用
strstr(str1,str2)函数用于判断字符串str2是否是str1的子串。如果是,则该函数返回str2在str1中首次出现的地址;否则,返回NULL。
#include<cstdio> #include<cstring> using namespace std; int main() { int n; while(~scanf("%d",&n)){ int ans=0; char a[50000],b[50000]; while(n--){ scanf("%s",a); strcat(b,a); char *p=b,*o; while(o=strstr(p,"wanshen")){ p=o+7; ans++; } strcpy(b,p); } printf("%d\n",ans); } return 0; }
#include<bits/stdc++.h> int n,cnt; int next[50000]; void get_next(char S[]) { int Slen=strlen(S); int i=1,j=0; next[1]=0; while(i<Slen){ if(j==0||S[i-1]==S[j-1]){ i++; j++; next[i]=j; } else j=next[j]; } } bool KMP(char S[],char T[]) { int i=0,j=1,Slen=strlen(S),Tlen=strlen(T); while(i<=Slen&&j<=Tlen){ if(j==0||S[i-1]==T[j-1]){ i++; j++; } else j=next[j]; } if(j>Tlen) return true; return false; } int main() { char s[50000],S[50000]; char T[8]={"wanshen"}; while(scanf("%d",&n)!=EOF){ cnt=0; while(n--){ scanf("%s",s); strcat(S,s); get_next(S); char *o,*p=S; while(o=strstr(p,"wanshen")){ if(KMP(S,T)) cnt++; p=o+7; } strcpy(S,p); } printf("%d\n",cnt); } }
标签:
字符串匹配(KMP)
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· 深入理解Mybatis分库分表执行原理
· 使用 Dify + LLM 构建精确任务处理应用