-
If it is found that the control has prompted unregistered, please run
如果发现有提示控件未注册,请运行"控件注册.bat"注册控件.-If it is found that the control has prompted unregistered, please run
- 2022-08-25 02:53:06下载
- 积分:1
-
MS ACCESS 数据库文件的压缩 Delphi 实现
MS ACCESS 数据库文件的压缩 Delphi 实现-MS ACCESS database file compression Delphi realize
- 2022-01-25 16:10:59下载
- 积分:1
-
a small travel agency management system
一个小型的旅行社管理系统-a small travel agency management system
- 2022-03-18 20:45:00下载
- 积分:1
-
everlasting General existing 21 matches, two from rotation, each person could ta...
天长地久一般现有21场比赛,两人轮换,每人可从1场拿下4场,不可多拿。我们也不能得到,谁拿了最后的红火谁输了比赛。请编写一个人机游戏的程序,先向电脑索取并取得“一台电脑要‘长生不老将军’”*分析和设计算法后在电脑上取情况,才能使电脑成为‘长生不老将军’必须从中找出关键。按照这个题目的要求来总结自己的想法,以后取一个为数的孩子与对方只需一步和数额相等,最后我们就可以保证给孩子留下一个长子这是个人的。相应的分析算法
- 2022-09-28 14:10:03下载
- 积分:1
-
这是一个有序链表的生成和插入的源码。用C++实现。
这是一个有序链表的生成和插入的源码。用C++实现。-This is an orderly list of the generation and insertion of the source. With C++ Realize.
- 2022-02-02 23:35:15下载
- 积分: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
-
文件中是我编写的两个数据结构,线性表列和链表,是用类模版函数编写,是面向过程设计...
文件中是我编写的两个数据结构,线性表列和链表,是用类模版函数编写,是面向过程设计-document is prepared by the two data structure, tabulated and linear chain and is prepared category template function, process-oriented design
- 2022-05-20 06:34:29下载
- 积分:1
-
别人的VC操作Access数据库都是用的GUI,让VC手生的看了迷糊,不得要领,这次我封装一个纯C++操作Access2000库的源代,主要封装了一个访问Acc...
别人的VC操作Access数据库都是用的GUI,让VC手生的看了迷糊,不得要领,这次我封装一个纯C++操作Access2000库的源代,主要封装了一个访问Access数据库的类,非常简单.-Someone else" s VC action Access databases are used in GUI, so that VC looked rusty" s confused, but to no avail, this time I packaged a pure C++ source operating Access2000 database generation, mainly encapsulates an Access database, access to classes, is very simple .
- 2022-01-26 15:49:36下载
- 积分:1
-
vb编的医院管理系统,需要的可以下载,有兴趣自行习惯
vb编的医院管理系统,需要的可以下载,有兴趣自行习惯-vb series of the hospital management system, the need to be downloaded, are interested in their own habits! !
- 2022-02-07 07:45:50下载
- 积分:1
-
vb用sql语句操作数据库
vb用sql语句操作数据库-vb used to operate the database sql statement
- 2022-04-27 17:53:14下载
- 积分:1