loveC--
loveC--
全部文章
分类
归档
标签
去牛客网
登录
/
注册
loveC--的博客
全部文章
(共58篇)
题解 | #二叉排序树#
注意引用符号千万不可缺失 #include<iostream> #include<vector> #include<queue> using namespace std; struct TreeNode{ int data; TreeNode* leftc...
2024-03-04
0
142
题解 | #二叉树遍历#
#include<iostream> #include<string> using namespace std; struct TreeNode { char data; TreeNode* leftchild; TreeNode* rightchild; }; v...
2024-03-04
0
135
题解 | #二叉树遍历#
先序遍历字符串而不是二叉树的先序遍历 #include<iostream> using namespace std; struct TreeNode { char data; TreeNode* leftchild; TreeNode* rightchild; }; int ...
2024-03-04
0
206
题解 | #二叉树#
#include<iostream> #include<cstdio> using namespace std; int btree(int n, int m) { if (m > n) return 0; else return 1 + btree...
2024-03-02
0
131
题解 | #全排列#
看了大神们的思路想出来的#include<iostream>#include<cstdio>#include<string>using namespace std;void fullrank(string pre,string str) { if (str....
2024-03-02
0
155
题解 | #计算表达式#
和简单计算器一模一样直接搬过来用了 #include<iostream> #include<cstdio> #include<stack> #include<map> #include<string> using namespace std...
2024-03-01
0
165
题解 | #简单计算器#
花了三个小时,还是太差了 #include<iostream> #include<cstdio> #include<stack> #include<map> #include<string> using namespace std; ma...
2024-03-01
0
179
题解 | #首字母大写#
利用getline来处理一整行的输入 #include<iostream> #include<string> using namespace std; int main() { string str; while (getline(cin,str) ) { if ...
2024-02-25
0
164
题解 | #单词替换#
使用find函数时会将所有匹配上的字符串全部替换掉,所以要在单词的前后加上空格 #include<iostream> #include<string> using namespace std; int main() { string str; string oldstr...
2024-02-25
0
145
题解 | #密码翻译#
#include<iostream> #include<string> using namespace std; int main() { string str; while (getline(cin,str)) { for (int i = 0; i <...
2024-02-25
0
179
首页
上一页
1
2
3
4
5
6
下一页
末页