-
Data Structure of maps
Data Structure of maps
- 2023-05-29 07:35:03下载
- 积分:1
-
简单的聊天
此代码是只有简单的聊天系统。开发此应用程序由 PHP 和 Mysql。那里有很多的 JSP。
- 2022-08-15 21:26:44下载
- 积分:1
-
通过此软件可方便的对interbase数据库进行合并,分割,筛选,迁移等操作。...
通过此软件可方便的对interbase数据库进行合并,分割,筛选,迁移等操作。-through this software can be a convenient database on the interbase merger, the division, screening, relocation operation.
- 2022-05-19 07:18:27下载
- 积分:1
-
这是我自己写的从数据库中读出数据,并显示,并构成不规则三角网的程序,可以在程序中添加约束线。...
这是我自己写的从数据库中读出数据,并显示,并构成不规则三角网的程序,可以在程序中添加约束线。-This is written in my own读出数据from the database and displays, and triangulated irregular network constitutes the procedure, you can add a constraint in the procedure line.
- 2022-08-24 07:48:52下载
- 积分:1
-
JAVA数据结构与算法的二叉树用小应用程序实现
JAVA数据结构与算法的二叉树用小应用程序实现-Java data structures and algorithms with small Application Binary Tree Program
- 2023-04-01 20:25:04下载
- 积分:1
-
设计一个计算机管理系统完成图书管理基本业务1,每种书的登记内容包括书号、书名、著作者、现存量和库存量;2)对书号建立索引表(线性表)以提高查找效率3)系统主要功...
设计一个计算机管理系统完成图书管理基本业务1,每种书的登记内容包括书号、书名、著作者、现存量和库存量;2)对书号建立索引表(线性表)以提高查找效率3)系统主要功能如下:
采编入库:新购一种书,确定书号后,登记到图书帐目表中,如果表中已有,则只将库存量增加;
借阅:如果一种书的现存量大于0,则借出一本,登记借阅者的书证号和归还期限,改变现存量;
归还:注销对借阅者的登记,改变该书的现存量。
1)系统功能的进一步完善2)索引表采用树表。3)设计内容4)程序流程图5)源程序6)软件测试报告(包括所用到的数据及结果)
-Books Management System
- 2022-02-24 14:53:07下载
- 积分: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
-
is a small clinic registered software can help research and development in this...
是一小型门诊挂号软件,可帮助研究开发这方面软件者有参考价值。-is a small clinic registered software can help research and development in this regard are software reference value.
- 2022-08-22 00:31:33下载
- 积分:1
-
线性表(顺序存储)结构与功能的简易实现
线性表(顺序存储)结构与功能的简易实现,本代码采用C++实现,仿照C++中的容器类,将该线性表封装成了一个使用的多功能类。
- 2022-05-15 02:40:19下载
- 积分:1
-
1.定义数据结构。
2.编写函数,实现插入排序算法。
3.编写函数,实现希尔排序或快速排序等效率较高的算法。...
1.定义数据结构。
2.编写函数,实现插入排序算法。
3.编写函数,实现希尔排序或快速排序等效率较高的算法。-1. Defined data structure. 2. Write a function to achieve insertion sort algorithm. 3. Write a function to achieve Hill sort or quick sort, etc. more efficient algorithms.
- 2022-06-26 20:02:41下载
- 积分:1