1296: 牛棚回声 摘要:解题思路:其实质是求两个字符串的最长相符长度注意事项:参考代码:#include <iostream>#include <cstring>using namespace std; int max_ma…… 题解列表 2024年03月10日 0 点赞 0 评论 162 浏览 评分:9.0
1296: 牛棚回声 摘要:```cpp #include using namespace std; int max_match(string s1, string s2) { int len1=s1.leng…… 题解列表 2023年04月15日 0 点赞 0 评论 193 浏览 评分:9.9
暴力匹配(效率低) 摘要:解题思路:用临时值依次匹配,不要用i和j本身注意事项:如下参考代码:#define _CRT_SECURE_NO_WARNINGS#include<iostream>#include<string.h…… 题解列表 2022年11月02日 0 点赞 0 评论 95 浏览 评分:0.0
P1029 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int max_match(string …… 题解列表 2018年02月18日 2 点赞 0 评论 739 浏览 评分:2.0