莫邪酱
莫邪酱
全部文章
分类
学术英语(2)
数据结构(8)
未归档(1)
题解(5)
归档
标签
去牛客网
登录
/
注册
莫邪酱的博客
你是天选,也是唯一
全部文章
(共13篇)
数据结构-二叉树、线索二叉树(哈夫曼树)
二叉树 /*coder:cyl time: 2020.12.22*/ #include<bits/stdc++.h> using namespace std; #define MAX_TREE_SIZE 1250 #define TElemType char #define Stat...
2020-12-19
1
639
数据结构-稀疏矩阵(十字链表)
稀疏矩阵 /*coder:cyl time: 2020.12.1*/ #include<bits/stdc++.h> using namespace std; #define ElemType int #define Status int #define OK 1 #de...
2020-12-18
0
859
数据结构-稀疏矩阵(三元组存储)
稀疏矩阵 /*coder:cyl time: 2020.12.1*/ #include<bits/stdc++.h> using namespace std; #define MAXSIZE 12500 #define ElemType int #define Status in...
2020-12-18
0
892
数据结构-串(文本编辑器)
串 /*coder:cyl time: 2020.12.1*/ #include<bits/stdc++.h> using namespace std; #define MAXSIZE 255 #define QElemType char #define Status char...
2020-12-18
0
639
数据结构-队列(运动会冲突矩阵,时间安排)
队列 /*coder:cyl time: 2020.12.1*/ #include<bits/stdc++.h> using namespace std; #define MAXSIZE 100 #define QElemType int #define Status int...
2020-12-18
0
995
数据结构-链栈
链栈 /*coder:cyl time: 2020.12.1*/ #include<bits/stdc++.h> using namespace std; typedef int SElemtype; typedef int Status; #define STACK_INIT_SI...
2020-12-18
0
533
数据结构-非循环单链表(多项式运算)
非循环单链表 /*coder:cyl time: 2020.12.1*/ #include<bits/stdc++.h> using namespace std; #define MAXSIZE 1000 #define ElemType int #define Status ...
2020-12-18
2
664
数据结构-顺序表(学生管理系统)
顺序表 /*coder:cyl time: 2020.12.1*/ #include<bits/stdc++.h> using namespace std; #define MAXSIZE 1000 #define ElemType int #define Status int...
2020-12-18
0
848
10月26每日一题
乌龟棋 题解:动态规划 用dp[i][j][k][l]来表示第i+j* 2+k *3+l *4+1的格子可以取得的最大值它可以由前i-1||(j-1) * 2||(k-1) * 3||(l-1) * 4的格子而来 #include <bits/stdc++.h> using namesp...
2020-10-26
0
461
2020牛客暑期多校训练营(第十场)
A-Permutation 链接:https://ac.nowcoder.com/acm/contest/5675/A题意:不难发现,从 1 开始选,能选 2 的倍数就选 2∗x%n,能选 3 的倍数就选 3∗x%n,不能选就输出 −1就行。思路:直接暴力模拟就好了代码: #include <...
2020-08-11
0
528
首页
上一页
1
2
下一页
末页