-
本书主要介绍Delphi的数据库编程知识,为Delphi开发人员提供了很好的指导。...
本书主要介绍Delphi的数据库编程知识,为Delphi开发人员提供了很好的指导。-This book introduces the Delphi programming knowledge database for Delphi developers have provided a good guide.
- 2022-03-15 17:24:06下载
- 积分:1
-
php数据库操作类,access的数据库 欢迎使用
php数据库操作类,access的数据库 欢迎使用-php database opreater access database welcome to use
- 2022-01-26 08:33:24下载
- 积分:1
-
一个不错的数据源连接程序
一个不错的数据源连接程序-a good source of data link procedures
- 2022-04-18 16:55:21下载
- 积分:1
-
得到中文的汉语拼音
得到中文的汉语拼音-be Chinese pinyin system
- 2022-07-13 19:20:56下载
- 积分:1
-
University Database Management System using Microsoft Access.
University Database Management System using Microsoft Access.
- 2022-05-15 17:41:01下载
- 积分:1
-
随机产生5组测试数据,分别进行顺序查找,折半查找和分块查找,输出比较结果...
随机产生5组测试数据,分别进行顺序查找,折半查找和分块查找,输出比较结果-five groups randomly generated test data, for the order to search, locate and half-block search, the output results
- 2022-02-12 07:48:22下载
- 积分:1
-
C++写的归并排序算法,非递归,简单高效
C++写的归并排序算法,非递归,简单高效-the nonrecursive code of mergesort
- 2022-05-24 21:16:45下载
- 积分: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
-
一个同学的毕业设计
一个同学的毕业设计-a student at the graduate design
- 2022-02-25 17:06:49下载
- 积分:1
-
背包问题(非0/1)C++标准算法
背包问题(非0/1)C++标准算法-knapsack problem (0/1) C Standard Algorithm
- 2022-01-23 10:13:19下载
- 积分:1