-
FastDB
fastdb-241源码,俄国人开发实时数据库系统!-fastdb-241 source, the Russians to develop real-time database system!
- 2022-05-07 04:46:40下载
- 积分:1
-
数据结构图论课后题
资源描述数据结构图论课后题,对于初学数据结构课程的学生有很大帮助
- 2023-07-11 00:15:03下载
- 积分:1
-
一个同学的毕业设计
一个同学的毕业设计-a student at the graduate design
- 2022-02-25 17:06:49下载
- 积分:1
-
my own use VC numerical algorithm development process
我自己用VC++开发的数值算法程序――二次罚函数罚,对于处理带约束的问题效果很好-my own use VC numerical algorithm development process-- second penalty function fines, and dealing with the problem of constrained good results
- 2022-01-27 16:31: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
-
这是我在英国的C语言导师自己所写的一个二叉树的程序。
这是我在英国的C语言导师自己所写的一个二叉树的程序。-This is a binary-tree programme written by my tutor in England.
- 2022-12-04 10:50:02下载
- 积分:1
-
用C++封装一个大整数在这类超大整数可以…
用C++ 包装了大整数这个类,超级大的整数现在也可以用了。-With C++ Packaging a large integer in this category, the super large integer can be used now.
- 2022-03-18 19:45:34下载
- 积分:1
-
this desktop software application form, since the definition of the menu of comm...
本桌面软件应用窗体,自定义菜单常用工具,数据表加密,树形控件等技术。新学者可以从中学习。人性化和个性化的界面设计,笑料十足,着实让人眼前一亮
- 2022-09-19 07:25:03下载
- 积分:1
-
如何使用水晶报表
how to use crystal report
- 2022-03-19 06:53:08下载
- 积分:1
-
用数据库开发系统,并主动代码发布
同一个数据库开发的系统,有源代码和发布版本-with a database development systems, and active code releases
- 2022-02-11 13:50:28下载
- 积分:1