-
红黑树:输入:在同一目录下的redblacktree.txt文件中输入十个大于0的数值,每个数值中间用空格格开 数目可以大于十个,但是要求在源程序中改变#def...
红黑树:输入:在同一目录下的redblacktree.txt文件中输入十个大于0的数值,每个数值中间用空格格开 数目可以大于十个,但是要求在源程序中改变#define NUM 10 ,改成相应关键值各个数输出:按照先序输出红黑树,格式为:根节点。颜色(左子树。颜色,右子树。颜色),并输出此 树的黑高度,然后输入要删除的关键值,按回车后输出删除后的结果,并输出其高度。-RED-BLACK TREE : Admission : in the same directory under the file input redblacktree.txt greater than 0 10 digits each intermediate numerical grid with open spaces can be greater than the number 10, but requested change in the source# define NUM 10, the corresponding critical value into several different output : In accordance with the first sequence RED-BLACK TREE output format : nodes. Color (left subtree. Color, right subtrees. Color), and export of the black tree height and then delete the key to value, according to enter the output was the result of the deletion, and its high output.
- 2022-06-11 22:41:49下载
- 积分:1
-
快速 c + + xml 解析器
这是一个魅力 xml c + + 解析器,如果您需要 xpath,请下载我的其他来源 (快速 c + + xpath 语法分析器).in 代码 xmltest,这测试解析器,向您展示如何使用解析器。
- 2022-03-02 03:10:41下载
- 积分:1
-
Data Structure classic:
数据结构经典:《用C++描述数据结构》 作者:埃利斯・霍罗维茨 1997-Data Structure classic:
- 2022-03-23 05:52:36下载
- 积分:1
-
本代码演示了使用MS SQL和delphi进行简单数据库开发,一个简单的学生成绩系统,附近中有数据库创建的文本...
本代码演示了使用MS SQL和delphi进行简单数据库开发,一个简单的学生成绩系统,附近中有数据库创建的文本-This code demonstrates the use of MS SQL, and delphi simple database development, a simple student achievement system, there is a database created in the vicinity of the text
- 2022-08-12 20:06:35下载
- 积分:1
-
一个有用的数据库操作程序(用jubilder)
一个有用的数据库操作程序(用jubilder)-a useful database operations (using jubilder)
- 2022-06-21 13:08:34下载
- 积分:1
-
学校注册管理[软件工程]
学籍管理【软件工程作业】- School register management [ software engineering work ]
- 2022-01-26 07:01:59下载
- 积分:1
-
这是一个用来查询历史数据的小程序,它曲线、柱状图来显示的...
这是一个用来查询历史数据的小程序,它曲线、柱状图来显示的-This is a historical data used to query a small program that curve, histogram to show the
- 2023-01-31 23:10:05下载
- 积分:1
-
求向量的欧式距离
求向量的欧式距离-vector for the Continental distance
- 2023-02-18 09:40:03下载
- 积分:1
-
数据结构,队列,医院预约看病程序
应用背景在较复杂的数据处理过程中,通常需要保存多个临时产生的数据,如果先产生的数据先进行处理,那么需要用队列来保存这些数据。关键技术看病,采用先到先看的原则,由于人数的不确定性,这里采用一个带节点的单链表作为队列的存储结构。
- 2022-07-11 01:14:36下载
- 积分:1
-
c++链式队列的实现
c++链式队列的实现头文件如下:
typedef int Item;
typedef struct node * PNode;
typedef struct node
{
Item data;
PNode next;
}Node;
typedef struct
{
PNode front;
PNode rear;
int size;
}Queue;
/*构造一个空队列*/
Queue *InitQueue();
/*销毁一个队列*/
void DestroyQueue(Queue *pqueue);
/*清空一个队列*/
void ClearQueue(Queue *pqueue);
/*判断队列是否为空*/
int IsEmpty(Queue *pqueue);
/*返回队列大小*/
int GetSize(Queue *pqueue);
/*返回队头元素*/
PNode GetFront(Queue *pqueue,Item *pitem);
/*返回队尾元素*/
PNode GetRear(Queue *pqueue,Item *pitem);
/*将新元素入队*/
PNode EnQueue(Queue *pqueue,Item item);
/*队头元素出队*/
PNode DeQueue(Queue *pqueue,Item *pitem);
/*遍历队列并对各数据项调用visit函数*/
void QueueTraverse(Queue *pqueue,void (*visit)());
- 2023-09-04 20:50:03下载
- 积分:1