莫邪酱
莫邪酱
全部文章
数据结构
学术英语(2)
未归档(1)
题解(5)
归档
标签
去牛客网
登录
/
注册
莫邪酱的博客
你是天选,也是唯一
全部文章
/ 数据结构
(共8篇)
数据结构-二叉树、线索二叉树(哈夫曼树)
二叉树 /*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
659
数据结构-稀疏矩阵(十字链表)
稀疏矩阵 /*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
881
数据结构-稀疏矩阵(三元组存储)
稀疏矩阵 /*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
916
数据结构-串(文本编辑器)
串 /*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
660
数据结构-队列(运动会冲突矩阵,时间安排)
队列 /*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
1015
数据结构-链栈
链栈 /*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
552
数据结构-非循环单链表(多项式运算)
非循环单链表 /*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
677
数据结构-顺序表(学生管理系统)
顺序表 /*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
862