1296: 牛棚回声 摘要:解题思路:其实质是求两个字符串的最长相符长度注意事项:参考代码:#include <iostream>#include <cstring>using namespace std; int max_ma…… 题解列表 2024年03月10日 0 点赞 0 评论 162 浏览 评分:9.0
看看得了,暴力求解 摘要:解题思路:我是小白,整体思路是两行字符串,从第一行字符串中第一个和第二行字符串第一个开始比较,相等一起往后移,并且计数加1,不相等第一行回到第一个字符串,第二行字符串回到最开始字符串加1的位置,又继续…… 题解列表 2023年09月06日 0 点赞 0 评论 122 浏览 评分:0.0
1296: 牛棚回声 摘要:```cpp #include using namespace std; int max_match(string s1, string s2) { int len1=s1.leng…… 题解列表 2023年04月15日 0 点赞 0 评论 192 浏览 评分:9.9
暴力匹配(效率低) 摘要:解题思路:用临时值依次匹配,不要用i和j本身注意事项:如下参考代码:#define _CRT_SECURE_NO_WARNINGS#include<iostream>#include<string.h…… 题解列表 2022年11月02日 0 点赞 0 评论 95 浏览 评分:0.0
P1029-题解(C语言代码)你老师没教你写注释吗??? 摘要:解题思路: 看到这个题目我立刻就想到了KMP算法了,但是仔细一琢磨,这道题又还没到需要使用KMP算法的地步,应该使用基本的暴力法就能解决,但是思路又模模糊糊,于是乎我点开了注解,好家伙,我直接好…… 题解列表 2021年02月18日 0 点赞 0 评论 289 浏览 评分:7.5
P1029 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int max_match(string …… 题解列表 2018年02月18日 2 点赞 0 评论 738 浏览 评分:2.0
P1029 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int lee(char* a,char* b,int la,int lb){ int i,j,ma…… 题解列表 2018年02月13日 0 点赞 0 评论 955 浏览 评分:0.0