Coming680
Coming680
全部文章
题解
归档
标签
去牛客网
登录
/
注册
德林恩宝的牛客博客
CSDN访问链接baolin.blog.csdn.net
全部文章
/ 题解
(共105篇)
题解 | #二叉排序树#
#include<iostream> using namespace std; typedef struct node { int num; struct node* left, * right; node(int n) :num(n), left(NULL), ...
C++
2022-02-10
1
567
题解 | #二叉排序树#
#include<iostream> using namespace std; typedef struct node { int num; struct node* left, * right; node(int n) :num(n), left(NULL), ...
C++
2022-02-10
2
549
题解 | #二叉树遍历#
#include<iostream> using namespace std; typedef struct node { char value; struct node* left, * right; }NodeTree, * Tree; void BuildTree(...
C++
2022-02-10
0
382
题解 | #八皇后#
#include<iostream> #include<vector> #include<stdlib.h> #include<algorithm> #include<string> #include<set> using na...
C++
2022-02-09
0
400
题解 | #神奇的口袋#
#include<iostream> #include<algorithm> using namespace std; int cnt = 0; void dfs(int v[],int n,int total,int pos){ if(total == 40){ ...
C++
2022-02-09
4
568
题解 | #进制转换2#
#include<iostream> #include<stack> #include<string> using namespace std; int main() { int m, n; cin >> m >> n; ...
C++
2022-01-26
1
484
题解 | #简单计算器#
#include<iostream> #include<stack> #include<string> using namespace std; void Calc(stack<float>& StackNum, stack<strin...
C++
2022-01-26
0
381
题解 | #完数与盈数#
#include<iostream> #include<set> using namespace std; int main() { std::ios::sync_with_stdio(false); cin.tie(0); set<int>...
C++
2022-01-26
0
474
题解 | #字符串匹配#
#include<iostream> #include<vector> using namespace std; void trans(string &str) { //全部转换为小写 for (int i = 0; i < str.size()...
C++
2022-01-26
7
782
题解 | #首字母大写#
easy #include<iostream> #include<string> using namespace std; int main() { string str,temp; while (getline(cin, str)) { fo...
C++
2022-01-25
1
376
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页