黑乎乎的酱猪肉
黑乎乎的酱猪肉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
黑乎乎的酱猪肉的博客
全部文章
(共25篇)
题解 | #搬水果#
#include <bits/stdc++.h> using namespace std; int main() { int n;//水果种类数 int x; while (scanf("%d", &n) != EOF) { ...
2024-03-24
0
165
题解 | #二叉树遍历#
#include <bits/stdc++.h> using namespace std; //树节点的定义 typedef struct TreeNode { char data; TreeNode* left; TreeNode* right; }* Tr...
2024-03-22
0
133
题解 | #计算表达式#
#include <bits/stdc++.h> using namespace std; int main() { char str[1000]; map<char, int> priority = { {'\0', 0}, ...
2024-03-19
0
192
题解 | #首字母大写#
#include <bits/stdc++.h> using namespace std; int main() { string scent; while (getline(cin, scent)) { scent = ' ' + scent; ...
2024-03-18
0
155
题解 | #找最小数#
#include <bits/stdc++.h> using namespace std; struct Couple { int x; int y; }; bool Compare(Couple lhs, Couple rhs) { if (lhs.x &l...
2024-03-13
0
174
首页
上一页
1
2
3
下一页
末页