morisa
morisa
全部文章
题解
归档
标签
去牛客网
登录
/
注册
morisa的博客
全部文章
/ 题解
(共4篇)
merge count
class Solution { public: int MOD = 1000000007; int _merge(vector<int>& data, int left, int right) { if(left >= right)...
2021-04-01
0
446
KMP
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算模板串S在文本串T中出现了多少次 * @param S string字符串 模板串 * @pa...
2021-04-01
1
667
DP
class Solution { public: /** * min edit cost * @param str1 string字符串 the string * @param str2 string字符串 the string * @param ic...
2021-03-30
0
425
暴力回溯
暴力回溯 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param matrix string字符串 * @param rows in...
2021-03-26
0
574