牛马ID
牛马ID
全部文章
分类
题解(81)
归档
标签
去牛客网
登录
/
注册
牛马ID的博客
全部文章
(共135篇)
题解 | #涂颜料#
// 模拟一定会超时! #include <bits/stdc++.h> using namespace std; const int max_len = 1e6+10; int p...
C++
2022-09-13
0
256
题解 | #棋盘#
#include <iostream> #include <vector> #include <algorithm> const long mod = 10...
C++
2022-09-12
1
245
题解 | #正则表达式匹配#
class Solution { public: /* 把能确定的都确定下来,(能确定的一般都是只能满足一种迭代方程的,或者不再迭代方程...
2022-06-19
0
350
题解 | #正则表达式匹配#
class Solution { public: /* 把能确定的都确定下来,(能确定的一般都是只能满足一种迭代方程的,或者不再迭代方程...
2022-06-19
0
305
题解 | #编辑距离(一)#
import java.util.*; public class Solution { public int editDistance (String str1,&nbs...
2022-06-18
0
290
题解 | #数字字符串转化成IP地址#
import java.util.*; public class Solution { /** * ...
回溯
Java
2022-06-15
0
300
题解 | #洗牌#
// 洗牌 : 存在一定的周期性! #include <iostream> #include <vector> #include <algorithm> using namespace&nb...
数组
模拟
C++
2022-06-07
0
397
题解 | #汽水瓶#
#include <iostream> // 模拟 递归! using namespace std; int calc(int n){ if(n <&n...
C++
递归
2022-06-07
0
261
题解 | #字符串通配符#
#include <iostream> #include <string> using namespace std; bool match(const string& pat,const&nbs...
C++
2022-06-06
0
236
题解 | #扑克牌大小#
#include <iostream> #include <string> #include <algorithm> using namespace std; string findMax(const...
C/C++
2022-06-01
0
406
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页