字符串的修改-题解(C++代码) 规律观察 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2019年06月13日 0 点赞 0 评论 525 浏览 评分:0.0
判断最后一个字符 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ string s1,s2; cin>>s1>>s2; in…… 题解列表 2022年01月22日 0 点赞 0 评论 105 浏览 评分:0.0
双指针法求解此题 摘要:解题思路: 核心思路为: 1. 首先初始化两个字符串指针,分别指向字符串A、B的开头(后称A指针和B指针)。 2. 比较A、B指针的指向值是否相等,若相等则双指针后…… 题解列表 2023年01月02日 0 点赞 0 评论 78 浏览 评分:0.0
1205_题解_字符串的修改-最长公共子序列_dp 摘要:需要改动的次数为,目标字符串长度 - 两字符串最大公共子序列的长度#include<iostream> #include<cstring> using namespace std; const…… 题解列表 2022年02月24日 0 点赞 0 评论 103 浏览 评分:0.0
字符串的修改-题解(C++代码) 摘要:解题思路:注意事项:参考代码:/* //输入2字符串 //枚举相同字符串(参考字符串为外循环,修改字符串是内循环) //较长字符串长度-相同字符数量 */ #include <c…… 题解列表 2020年08月15日 0 点赞 0 评论 247 浏览 评分:0.0
1205: 字符串的修改 C++ 动态规划 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; string s1; string s2; int L1,L2; …… 题解列表 2022年03月14日 0 点赞 0 评论 144 浏览 评分:0.0
字符串的修改-题解(C++代码) 摘要: 贪心:需要修改的最少次数=元素的个数-不需要修改的个数 ```cpp #include #include #include #include #include using na…… 题解列表 2020年04月25日 0 点赞 0 评论 663 浏览 评分:0.0
最长公共子序列(动态规划)自用笔记 摘要:解题思路: 注意事项:第一张原图里字符串前的""是特意留出的,可以理解为空,可以直接忽略不看,红笔是i,j的值从1开始,黑笔是数组下标。第二张图是递归公式,C[i,j]代表LCS长度,例如C[1,2]…… 题解列表 2022年02月25日 0 点赞 0 评论 164 浏览 评分:0.0
动态规划思路 摘要:解题思路:不要想着怎么去更改字符操作,算出最优解就好了注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,m;char a[100],…… 题解列表 2021年03月13日 0 点赞 0 评论 178 浏览 评分:0.0
菜鸡写法,嵌套循环遍历 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<string>#include<cstring>#include<algorithm>#include<cmath…… 题解列表 2023年12月24日 0 点赞 0 评论 60 浏览 评分:0.0