loveC--
loveC--
全部文章
分类
归档
标签
去牛客网
登录
/
注册
loveC--的博客
全部文章
(共58篇)
题解 | #Is It A Tree?#
#include<iostream> #include<string> #include<algorithm> using namespace std; #define N 10000 //元素的上限个数 int father[N]; //存储了每个元素父亲的...
2024-03-11
0
160
题解 | #畅通工程#
并查集基础代码 #include<iostream> #include<string> #include<algorithm> using namespace std; #define N 1000 //元素的上限个数 int father[N]; //存储了...
2024-03-11
0
225
题解 | #连通图#
利用并查集实现,代码不难 #include<iostream> #include<string> #include<algorithm> using namespace std; #define N 1000 //元素的上限个数 int father[N]; ...
2024-03-11
0
224
题解 | #八皇后#
#include<iostream> #include<string> #include<algorithm> using namespace std; int n; string res[100]; int index = 0; bool isused[8][...
2024-03-11
0
203
题解 | #神奇的口袋#
#include<iostream> #include<string> #include<map> using namespace std; int item[25]; int res; //用于表示方式的个数 bool isused[25]; int n; ...
2024-03-10
0
190
题解 | #玛雅人的密码#
利用map来实现对以访问字符串的标记 #include<iostream> #include<map> #include<queue> using namespace std; struct miya { string str; int num; }; ...
2024-03-06
0
209
题解 | #搬水果#
实质为哈夫曼树 #include <iostream> #include<queue> using namespace std; struct hafuman { int value; }; bool operator < (hafuman lhs, hafuma...
2024-03-05
0
189
题解 | #哈夫曼树#
关键在于找到求解最短路径长度的规律,无需建树 #include <iostream> #include <queue> using namespace std; struct hafuman { int value; }; bool operator < (ha...
2024-03-05
0
189
题解 | #复数集合#
利用scanf("%d+i%d)的方法来实现特殊形式的输入 #include <iostream> #include<queue> using namespace std; struct num{ int real; //实部 int fiction; ...
2024-03-05
0
170
题解 | #二叉排序树#
学会利用递归思想来建立排序树 #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<vector> #include<queue> using namespace std; struct Tree...
2024-03-04
0
196
首页
上一页
1
2
3
4
5
6
下一页
末页