- 博客(5)
- 收藏
- 关注
原创 B+树的C++代码 , 自己写的,合不合适不知道
#include<iostream> using namespace std; #define MMM 5 #define DEFAULT 333 struct node { int *key; //关键码数组 int key_num; //节点当前的关键码个数 //T *data //数据 is_leaf为0时,则初始化d...
2018-09-10 08:59:43 1022
原创 红黑树C++代码 , 没优化,冗余太多,暂时是草稿一类
#include<iostream> using namespace std; #define DEFAULT 333 enum colour{red,black}; class rd; class node { private: colour color; node *lchild; node *rchild; node *parent; ...
2018-08-26 17:57:24 153
原创 B树 C++代码 总感觉哪里有问题,只供参考
#include<iostream> using namespace std; static const int MMM = 5; //B树阶数 //static const int key_max = MMM + 1; //key[0]不作用途, key[m]用于插入分裂时使用 #define DEFAULT 333 struct node { int ...
2018-08-03 14:13:35 231
原创 用邻接矩阵实现图的几种基本算法的C++代码,只有代码,无详解 ,代码冗余较多,仅供参考,望指正
#include<iostream> using namespace std; #define DEFAULT 111 #define VERTEX_DEFAULT 66 //默认最大顶点数 #define ADJ_DEFAULT 111 //其实多余的,跟定点数一样即可 #define WEIGHT_INF 11111 //typedef char vertex...
2018-07-30 11:54:37 345
原创 内部几类排序代码,无详细排序过程介绍,整理统计,参考网上资料及曾经学习的ppt,有错误望指正
/*email:1171839091@qq.com 如代码有问题请找我,我好改改,谢谢!*/ #include<iostream> using namespace std; template<typename T> class sort //排序类 注:可以把数组当作类的数据成员 { public: sort() {} ~sor...
2018-07-18 12:06:17 211
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人