-
产品包装管控系统+ACCESS数据库
根据产品特性与需求,设置产品的条码格式,控制产品是否与工单信息相符,如不符合,则扫描FAIL,弹出提示;并按照单箱容量设置,提示满箱跟换箱号等信息提示,避免产品的短装,多装,错装现象,改善工厂产品的包装品质,将产品数据存与ACCESS数据库中,便于查询、修改等功能拓展。
- 2022-06-13 18:47:35下载
- 积分:1
-
1。我用VC 6编写的程序,包括过程的顺序…
1.本程序由本人采用vc++ 6.0编写,包括了排序平衡二叉树的整套算法(包括插入、删除、查找以及其测试算法)。 2.运行myavl_vc.exe输入树的初始结点个数,确定后本程序将在内存中生成一棵相应结点数的二叉树,在此基础上你可以进行各种操作(插入、删除、查找以及测试其平衡性、排序性等) 3.每一个结点信息包括"商品编码"、"商品名称",且以"商品编码"作为关键字 4.初始生成的树的结点的商品编码为从1按顺序递增,商品名称为"生成的商品"加上商品编码 5.程序中的随机插入与随机删除是为了更好的测试程序的正确性和可靠性 6.随机插入(删除)时,程序将不断向(从)树中随机插入(删除)结点,每次随机插入(删除)都会进行平衡性与排序性的检查,如果树已经失去了有序性或平衡性,则会弹出树已失去了有序性或平衡性的提示并停止插入(删除)操作,当然你可以随时中断随机操作-1. The procedure I used vc 6.0 preparation, including the sequencing of the entire balanced binary tree algorithm (including insert, delete, search and test algorithm). 2. Running myavl_vc.exe importation of the initial tree node number, the procedures established in the memory of the formation of a corresponding nodes of a binary tree, and on this basis you can conduct various operations (insert, delete, search and testing their balance, sorting etc.) 3. each node information including "Product Codes," "trade names," and the "commodity codes" as the keyword 4. initial produ
- 2022-03-11 19:21:53下载
- 积分:1
-
堆排序:思想: 用二叉树的结构来表示数组,及用数组来表示二叉树的结构,比如i为父节点其孩子为,2i,和2i+1.其中,大顶堆中 父节点大于其两个孩子
算法平...
堆排序:思想: 用二叉树的结构来表示数组,及用数组来表示二叉树的结构,比如i为父节点其孩子为,2i,和2i+1.其中,大顶堆中 父节点大于其两个孩子
算法平均时间复杂度: O(nlogn)
-HEAPSORT: thinking: using binary tree structure to express the array, and used to express an array of binary tree structure, such as i the parent node for its children, 2i, and 2i+ 1. Among them, the big top of a pile of the parent node greater than two children on average time complexity of algorithm: O (nlogn)
- 2022-07-11 06:36:53下载
- 积分:1
-
FORTRAN常用算法集。
fortran常用算法集。-FORTRAN commonly used algorithm sets.
- 2022-05-20 06:32:47下载
- 积分:1
-
选课管理数据库,以SQL为实际的数据平台,灵活建立数据库、数据库表、实现对表的各种查询等。...
选课管理数据库,以SQL为实际的数据平台,灵活建立数据库、数据库表、实现对表的各种查询等。-Course management database to SQL data for the actual platform, the establishment of a flexible database table to table to achieve the various inquiries.
- 2023-01-04 06:35:03下载
- 积分:1
-
学校信息系统
这项计划是包括招生过程中,搜索某一特定记录的学生和修改和更新的记录和该程序还提供了 2 份报告的学生。
- 2023-02-21 20:20:03下载
- 积分: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
-
约瑟夫环算法实现,能实现约瑟夫算法,利于初学者更好的学习数据结构...
约瑟夫环算法实现,能实现约瑟夫算法,利于初学者更好的学习数据结构-Josephus algorithm, the algorithm can achieve Joseph, which will help beginners learn better data structure
- 2022-04-20 00:42:17下载
- 积分:1
-
C language:hotel manage system
C语言课程设计--旅店客房管理系统
数据结构:采用十字链表,实现录入、遍历、保存、载入、修改、插入、删除、各种查询及统计等功能。运行环境:Turboc2.0,文本界面-C language:hotel manage system
- 2022-10-10 15:25: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