-
严蔚敏编写的《数据结构》第9章的答案,全部为源码
严蔚敏编写的《数据结构》第9章的答案,全部为源码-the answers of chapter 9 of a book called ‘Data Structures’ writen by Yan Wei Min
- 2023-03-28 04:15:04下载
- 积分:1
-
SHELL排序算法与应用
SHELL排序算法与应用-SHELL algorithm and application
- 2022-03-22 23:07:56下载
- 积分:1
-
图书馆管理系统,PHP
应用背景图书馆管理系统软件是用于监测和控制交易库。 ;图书馆管理系统是PHP MySQL主要集中在库中添加新成员的基本操作一样发达,新的书和更新信息,图书搜索、成员和设施,图书的借阅和归还关键技术图书馆管理系统的目的主要是提供图书馆自动化。用户提供的类别是:图书管理员:他可以读或写的任何成员的信息,可以更新,删除或创建一个会员计划。成员:他可以得到一本书。该应用范围广,可用于任何教育研究所,也可以在办公室使用的必要修改完成。有了这个应用程序,人工应用程序转换为自动在线应用。例如用途,定制的数据是用于此目的。用户将没有特权输入有关书籍的资料。在应用程序的三个主要组成部分:•登录•问题/借书•平衡费系统提供的解决方案是:•提供更好的和有效的服务•更快的信息检索减少图书馆工作人员的工作量本书的所有细节都可在点击•较少的文件工作和文件维护
- 2023-05-07 00:05:02下载
- 积分:1
-
Computer algorithms designed for the design of dynamic programming, you know
计算机算法设计,用于设计动态规划,你们懂得-Computer algorithms designed for the design of dynamic programming, you know
- 2022-07-27 06:46:13下载
- 积分:1
-
C language data structures Several structures, including Critical Path procedure...
用C语言实现数据结构的几种常用结构,还包括关键路径的程序。-C language data structures Several structures, including Critical Path procedures.
- 2022-03-14 20:17:49下载
- 积分:1
-
数据结构实验与实训教程
书籍语言: 简体中文
书籍类型: 程序设计
授权方式: 免费软件
书籍大小:...
数据结构实验与实训教程
书籍语言: 简体中文
书籍类型: 程序设计
授权方式: 免费软件
书籍大小: 1.7 MB
-experimental data structure and Training Guide books Language : English books categories : program design license : free software books Size : 1.7 MB
- 2022-11-25 02:40:03下载
- 积分:1
-
pb做出的outlook界面框架,可以直接用在管理信息系统中来使用.
pb做出的outlook界面框架,可以直接用在管理信息系统中来使用.-pb"s outlook interface framework, can be directly used in the management information systems to use it.
- 2022-11-12 22:00:03下载
- 积分:1
-
This is an improvement from a top
这是一个改进了自顶向下的归并排序,它改进的地方主要有:采用小子文件截止的机制,当序列长度小于32时,采用直接插入排序;对归并的内循环作了优化,判断的次数更少。-This is an improvement from a top-down sort of merger, it improved the main : the deadline for the paper boy mechanism, the length of the sequence is less than 32, the use of direct insertion sorting; Merging with the right circle made optimization, the number of less judgment.
- 2022-02-25 21:49:47下载
- 积分:1
-
用二分法解高阶方程的近似解。区间范围合计算精度可调,每一步的计算结果一列表的形式显示出来,一目了然...
用二分法解高阶方程的近似解。区间范围合计算精度可调,每一步的计算结果一列表的形式显示出来,一目了然-dichotomy solution with the higher-order equation approximate solution. The scope of a range accuracy adjustable every step of the calculation results in the form of a list show up clearly
- 2022-03-30 23:11:23下载
- 积分: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