-
二叉树_先中后根显示_结点信息查询_相似度比较等_附注释
二叉树的一些基本实现:具备功能:创建、删除二叉树(包括文件读取录入信息),先中后根显示二叉树(递归算法),结点信息查询(包括:结点所在层数,结点孩子个数,结点在先中后根排序中的位置、寻到结点路径长度),二叉树相似度比较;附带注释,界面友好,代码是在VC6.0下写的。
- 2022-07-10 18:06:05下载
- 积分:1
-
开发环境:VC++6.0+MFC 数据库:Oracle 8.0 请将oraclm.dll拷贝到运行文件的目录中! 要运行例子要先装Oracle 8.0,如果有什...
开发环境:VC++6.0+MFC 数据库:Oracle 8.0 请将oraclm.dll拷贝到运行文件的目录中! 要运行例子要先装Oracle 8.0,如果有什么问题,请看你机器上的Oracle安装目录下的mshelp/Oraclec.hlp。-Development Environment: VC++ 6.0+ MFC Database: Oracle 8.0 Please oraclm.dll files are copied to the run directory! To run the example of first installed Oracle 8.0, if there are any problems, see your machine to install the Oracle directory mshelp/Oraclec.hlp.
- 2022-01-30 12:51:23下载
- 积分:1
-
数据结构,栈的应用,表达式求值的源码及实验报告!
数据结构,栈的应用,表达式求值的源码及实验报告!-Data structure, stacks of applications, the source expression is evaluated and experimental report!
- 2023-08-01 13:50:02下载
- 积分:1
-
数据结构栈和队列基本源代码,并包括银行模拟、中缀表达式计算、列车调度、农夫过河问题等经典数据结构算法。...
数据结构栈和队列基本源代码,并包括银行模拟、中缀表达式计算、列车调度、农夫过河问题等经典数据结构算法。-Stack and queue data structure of the basic source code, and includes Bank of simulation, in the calculation is made up of expressions, the train scheduling, the farmer across the river, such as the classic problem of data structure algorithms.
- 2022-03-31 07:20:49下载
- 积分:1
-
JAVA密码保护页面
JAVA密码保护页面-password-protected pages JAVA
- 2022-02-05 01:48:38下载
- 积分:1
-
VFP的ERP的管理软件,源代码完整,位图自己布充下吧
VFP的ERP的管理软件,源代码完整,位图自己布充下吧-VFP ERP management software, the source code integrity, bitmap filling their cloth under it
- 2022-11-18 23:05:03下载
- 积分:1
-
清华版的数据结构要求的实验 此为广义表的程序
清华版的数据结构要求的实验 此为广义表的程序-Qinghua version of the data structure required for this experimental procedure generalized Table
- 2022-01-22 10:55:41下载
- 积分:1
-
数据结构:有关树所有操作
数据结构:有关树所有操作- Construction of data: The related tree all operates
- 2023-08-09 05:05:03下载
- 积分:1
-
数据结构课程设计!MFC做的!
其中有个是链表(单链表,双向
链表图形化演示),另一个是
图的最小生成树的图形化演示)。...
数据结构课程设计!MFC做的!
其中有个是链表(单链表,双向
链表图形化演示),另一个是
图的最小生成树的图形化演示)。-data structure course design! MFC done! Which is a linked list (single linked list, and two-way linked list graphic demonstration), Another is the minimum spanning tree graphic demonstration).
- 2022-01-28 09:46:52下载
- 积分: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