-
simple database management system
简单数据库管理系统-simple database management system
- 2022-05-26 03:27:43下载
- 积分:1
-
vb实现最短路径Dijkstra算法,很经典的算法。
vb实现最短路径Dijkstra算法,很经典的算法。-vb realize Dijkstra shortest path algorithm, it is the classic algorithms.
- 2022-07-06 18:38:36下载
- 积分:1
-
aviation shortest path detection, call VB D
航空最短路径探测,VB调用D-aviation shortest path detection, call VB D
- 2022-01-25 18:02:49下载
- 积分:1
-
货郎担限界算法 c语言
货郎担限界算法 c语言-traveling salesman Bound algorithm language c
- 2022-03-25 05:41:55下载
- 积分:1
-
This the memory allocation of some discussion and some algorithm to achieve!
这是有关内存分配的一些讨论 以及 一些算法的实现-This the memory allocation of some discussion and some algorithm to achieve!
- 2023-02-02 01:05:03下载
- 积分:1
-
约瑟夫环 已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个...
约瑟夫环 已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个人又出列;依此规律重复下去,直到圆桌周围的人全部出列。(有详细注解)数据结构学习的好例子-Joseph ring known n individuals (identified by serial number 1,2,3 ... n, respectively) were sitting around on a round-table. K from the number of people reported a few, a few of the m out of that person him from one of the next person to start off, a few m to another person out and so the law of repetition until around round-table All of the people out. (Detailed notes) data structure to learn a good example of
- 2023-06-20 15:30:04下载
- 积分:1
-
动态加载odbc数据源及其内部表单的小程序
动态加载odbc数据源及其内部表单的小程序-Dynamic loading odbc data source and its internal form of small programs
- 2022-09-04 08:50:02下载
- 积分: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
-
网上杂货店
应用背景基于网络的购物网站;特征用户可以添加nrew产品新用户还有更多……关键技术HTML / CSSPHP MySQLAdobe PS图象处理软件
- 2022-05-29 14:31:51下载
- 积分:1
-
用vc基于数据库编程源代码
用vc基于数据库编程源代码-with vc-based database programming source code
- 2022-02-15 12:10:43下载
- 积分:1