-
在线购物车
这个源代码是在线购物车。他们只有一个用户可以选择产品并提交未经注册的信息。
- 2022-01-25 17:57:54下载
- 积分:1
-
请假销假的管理系统
请假销假的管理系统-leave posture of the management system
- 2022-02-21 07:17:44下载
- 积分: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
-
VB航空公司管理系统,数据库使用SQL2
VB航空公司管理系统,数据库使用SQL2-VB airline management system, using the SQL2000 database
- 2022-01-25 14:58:32下载
- 积分:1
-
电子书中文件包括了十本讲数据结构的书(英文),很全面。...
电子书中文件包括了十本讲数据结构的书(英文),很全面。-electronic book which included a 10 stresses the data structure (English), very comprehensive.
- 2022-06-28 17:52:53下载
- 积分:1
-
Huffman算法的应用是Huffman编码使用一篇文章..
哈夫曼算法的应用是一篇关于使用哈夫曼编码和解码树的文章,其中包含了对文档的详细描述
- 2022-03-01 14:52:01下载
- 积分:1
-
用Delphi编写的户籍管理系统
用Delphi编写的户籍管理系统-prepared with the names of Delphi Management System
- 2022-03-10 21:51:47下载
- 积分:1
-
数据结构课程设计,一个简单的银行业务模拟.在c++环境下调试通过.
数据结构课程设计,一个简单的银行业务模拟.在c++环境下调试通过.-data structure curriculum design, a simple simulation of the banking business. C in the environment through debugging.
- 2022-03-19 05:20:54下载
- 积分:1
-
设计模式——简单工厂模式学习代码
一个用c++语言写的、学习简单工厂模式的代码。通过一个父类(OperationFactroy)指针,实现通过判断输入的计算符号而调用加、减、乘、除子类操作的简单代码。
- 2022-01-28 00:00:29下载
- 积分:1
-
This is a classic look for the nearest point of the algorithm, using VC preparat...
这是一个经典的寻找最近点对的算法实现,运用VC编写,采用类的方式,是程序更易理解。-This is a classic look for the nearest point of the algorithm, using VC preparation, the type used, the way the process easier to understand.
- 2022-02-05 11:01:24下载
- 积分:1