-
achieve the establishment of the provisional district and the establishment of a...
实现了临时建立分区和永久建立分区的效果
可以压缩和解压缩的解压缩文件-achieve the establishment of the provisional district and the establishment of a permanent regional results can be compression of the extracted files
- 2022-10-18 00:35:03下载
- 积分:1
-
用VB6.0和ADO开发的一个专家信息查询管理系统,包括文本和图象管理,可以方便的改写为其他专家管理系统。...
用VB6.0和ADO开发的一个专家信息查询管理系统,包括文本和图象管理,可以方便的改写为其他专家管理系统。-ADO with VB 6.0 and the development of an expert Information Management System including text and image management, to facilitate the adaptation of other experts management system.
- 2023-06-05 07:10:04下载
- 积分:1
-
derby database source code.good for you.
derby database source code.good for you.
- 2022-01-25 18:18:49下载
- 积分:1
-
二叉树
二叉树- Two forks the tree
- 2022-10-12 15:10:04下载
- 积分:1
-
一个快速排序算法的实现例子,数据结构课程作业,可作研究学习之用。 包含源文件和详细的开发文档,可方便移植到C等语言平台。...
一个快速排序算法的实现例子,数据结构课程作业,可作研究学习之用。 包含源文件和详细的开发文档,可方便移植到C等语言平台。-a fast algorithm to achieve example, the data structure course work and can be used for research and study purposes. Includes source document and detailed documentation, will facilitate the transplantation of languages such as C platform.
- 2022-04-15 16:19:00下载
- 积分:1
-
数据结构练习测试
数据结构练习测试-Data Structures Practice Test
- 2022-10-06 09:00:02下载
- 积分:1
-
数据库 编程VC++ ADO.net
VS 2013 编译。用的是ADO.的技术 访问SQL2008的数据库。是做课程设计的一部分。重新包装了类,更易使用
- 2022-12-29 17:15:18下载
- 积分:1
-
Visual Basic development of the household income and expenditure management syst...
Visual Basic开发的 家庭收支管理系统后台数据库Acce-Visual Basic development of the household income and expenditure management systems background database Acce
- 2022-04-24 02:57:18下载
- 积分:1
-
vf图书管理系统程序的源代码 很有用的代码 代码很好啊
vf图书管理系统程序的源代码 很有用的代码 代码很好啊-vf
- 2022-03-03 03:07:33下载
- 积分:1
-
数据结构——链表(双向循环链表)
双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed!
");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
- 2022-02-14 07:06:11下载
- 积分:1