-
一个焦化厂的电子称过秤软件,小巧实用,有需要修改的地方,不过已经能够胜任基本工作了。...
一个焦化厂的电子称过秤软件,小巧实用,有需要修改的地方,不过已经能够胜任基本工作了。-A coking plant, said electronic weighing software, compact and practical, there is need to modify the areas, but the basic work has been capable of.
- 2023-06-19 05:35:04下载
- 积分:1
-
可以用4*4矩阵键盘调整的数字钟,通过动态扫描显示在四位数码管上。...
可以用4*4矩阵键盘调整的数字钟,通过动态扫描显示在四位数码管上。-Can use 4* 4 matrix keyboard adjust the digital clock, through the dynamic scan is displayed in the four digital tube.
- 2022-08-20 11:48:30下载
- 积分:1
-
该源码为酒店等使用的源码,使用java语言编写。具有GUI图形界面,使用jdbc来连接数据库。软件架构很合理,尤其是代码很简洁。...
该源码为酒店等使用的源码,使用java语言编写。具有GUI图形界面,使用jdbc来连接数据库。软件架构很合理,尤其是代码很简洁。-The source for the hotel such as the use of the source, use the java language. Graphical interface with a GUI, use jdbc to connect to database. Software architecture is very reasonable, especially in very concise code.
- 2022-11-05 20:50:03下载
- 积分:1
-
一个关于公式分析得java小程序,内含全部源代码和接口的详细使用说明,对于学习数据结构的朋友来说,有一定的研究价值。...
一个关于公式分析得java小程序,内含全部源代码和接口的详细使用说明,对于学习数据结构的朋友来说,有一定的研究价值。-on a formula of good things java small program that contains all the source code and interface use the detailed, data for studying the structure of a friend, a certain value for research.
- 2023-06-25 14:35:04下载
- 积分:1
-
一个基于Web的图书系统moblib
这是一个移动网络图书馆系统采用PHP。它将帮助学生对什么事情对图书馆管理系统过程的基础
- 2022-05-16 22:34:32下载
- 积分:1
-
我写的数据结构小程序是关于排序算法的,功能比较全
我写的数据结构小程序是关于排序算法的,功能比较全-I write the data structure of small programs algorithm, the entire comparison function
- 2022-01-26 08:23:21下载
- 积分: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
-
用KRUSKAL算法求最短路径,可以运行C++源程序
用KRUSKAL算法求最短路径,可以运行C++源程序-KRUSKAL algorithm used for the shortest path, you can run C++ source code
- 2022-01-24 13:45:34下载
- 积分:1
-
在有向图中计算最小生成树
在有向图中计算最小生成树---Edmonds s Algorithm-Directed graph in calculating minimum spanning tree--- Edmonds s Algorithm
- 2023-04-22 21:00:03下载
- 积分:1
-
two forks of trees and the establishment of deleted files containing detailed
二叉排序树的建立和删除,详见内附文档-two forks of trees and the establishment of deleted files containing detailed
- 2022-07-10 12:29:56下载
- 积分:1