-
用VC写的一个数据库
用VC写的一个数据库-Use a database written in VC
- 2022-02-02 15:11:14下载
- 积分:1
-
Data structure of the source code and supporting notes, very complete, very usef...
数据结构的源代码和配套讲义,非常齐全,初学者非常实用。-Data structure of the source code and supporting notes, very complete, very useful for beginners.
- 2023-07-06 18:45:03下载
- 积分:1
-
简单的搜索引擎
它是基本的 C 编程概念和文件处理中的应用。
使用此应用程序用户可以搜索各种文件在系统内。打开该文件。读它。计算总的行在它和许多这类功能。
- 2022-12-06 06:10:03下载
- 积分:1
-
库存报告
我的标题是系统的库存报告。这是作咖啡商店库存,业务需要有他们当前的库存报告。结合使用 OLEDB 连接和使用水晶报表,创建的库存报告。
- 2022-09-19 10:40:04下载
- 积分:1
-
怎样判断一个指针指向的对象是否已经被析构,很好的学习C++的资料...
怎样判断一个指针指向的对象是否已经被析构,很好的学习C++的资料-how to decide a pointer at whether the target has been Destructors, good learning C information
- 2022-01-27 12:05:23下载
- 积分:1
-
Addison
Addison-Velski 和 Landis (AVL-Tree s)的二叉树,可以在对数时间内进行标准的操作,如插入、搜索和删除。-Addison-Velski and Landis (AVL- Tree s) of the binary tree, the right time for a few of the standard operation, such as insert, delete and search.
- 2022-07-12 08:29:17下载
- 积分:1
-
School management system in 2006 if they are MD5 encrypted file, not knowing the...
学校成绩管理系统 2006 如果遇到MD5加密文件,而又不知道的密码的,
请在数据库中换上这组加密的数据吧
469e80d32c0559f8
那么密码就是admin-School management system in 2006 if they are MD5 encrypted file, not knowing the password, please put in the database encrypted data for this group it is the admin password so 469e80d32c0559f8
- 2022-04-24 10:32:51下载
- 积分:1
-
1,图的建立与遍历操作
建立图的邻接矩阵
输出图从顶点V0出发按深度优先遍历的顶点序列
输出图从顶点V0出发按广度优先遍历的顶点序列
2,图的建...
1,图的建立与遍历操作
建立图的邻接矩阵
输出图从顶点V0出发按深度优先遍历的顶点序列
输出图从顶点V0出发按广度优先遍历的顶点序列
2,图的建立与拓扑排序-1, Graph traversal operation with the establishment of the establishment of the adjacency matrix output plans starting from the vertex V0 by depth-first traversal sequence of vertices losers Figure out from the starting point V0 according to the breadth- first traversal sequence vertex 2, and plans to establish the topological sorting
- 2022-11-18 00:10:04下载
- 积分: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
-
Beijing Bus Inquiry System Beijing Bus Inquiry System
北京公交车查询系统
北京公交车查询系统-Beijing Bus Inquiry System Beijing Bus Inquiry System
- 2022-02-03 12:07:35下载
- 积分:1