赫he
赫he
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
赫he的博客
全部文章
(共55篇)
题解 | #牛群的相似结构# 递归-遍历
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-06-21
0
140
题解 | #牛群的重新分组#
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ class Solution { public: ...
2024-06-18
0
141
题解 | #阶乘末尾非零数字#
#include <iostream> using namespace std; int n; int main() { cin >> n; /* n! 中 偶数 和 5相乘会出现0,而其它情况 答案就是 相乘的最后一位 n2 表示 n!中有多...
2024-04-16
0
266
题解 | #求x到y的最少计算次数# bfs
#include <iostream> #include <stack> #include <vector> using namespace std; int x, y; stack<int> st; int s[201]; int main() ...
2024-04-15
0
210
题解 | #非递减序列# 逻辑c++
#include <iostream> #include <vector> using namespace std; vector<int> a; bool isT(){ for(int i = 0; i < a.size()-1; i++){ ...
2024-04-15
0
250
题解 | #求连续子数组的最大和# 前缀和
#include <iostream> #include <vector> using namespace std; vector<int> a; int main() { int x = 0; char c; int p = 1; ...
2024-04-13
0
234
题解 | #括号匹配深度# --栈
#include <iostream> #include <algorithm> #include <stack> using namespace std; string str; stack<int> st; int manL = 0; // 栈...
2024-04-12
0
186
题解 | #冒泡排序#
#include <algorithm> #include <cstdio> #include <iostream> #include <vector> using namespace std; const int N = 51; //dp[i][k]...
2024-04-08
0
195
题解 | #缺失的括号#
#include <iostream> #include <vector> using namespace std; string str; int main() { cin >> str; while(str.size()){ b...
2024-04-06
0
251
详细注释 | #数位染色#
#include <iostream> #include <string> using namespace std; const int N = 200; int dp[N]; int main() { long long n; cin >> n;...
2023-11-16
0
312
首页
上一页
1
2
3
4
5
6
下一页
末页