-
数据结构中经典的约瑟夫环问题的解法。
数据结构中经典的约瑟夫环问题的解法。-data structure classic Josephus the solution.
- 2022-03-10 18:20:08下载
- 积分:1
-
数据库租赁 DVD
这是我的功课,与我的朋友。此示例数据库从 dvd 出租店。有 6 个实体,有一个关系 N N,N-1,执行查询,子查询,函数、 包,过程中,光标和触发器。
- 2023-07-12 15:30:09下载
- 积分:1
-
哈夫曼树的基本运算与实现的基本算法,对于数据结构初学者很有用...
哈夫曼树的基本运算与实现的基本算法,对于数据结构初学者很有用
-Huffman tree basic operations and realization of the basic algorithm, for data structures useful for beginners
- 2022-01-25 22:18:10下载
- 积分:1
-
OTL4示例
OTL4.0被设计成一个C++模板框架和OTL-适配器的组合。该框架是一个通用的实施OTL流的概念。该OTL-适配器周围的数据库API薄包装和作为类的类型参数传递到模板框架。
- 2022-03-22 23:36:29下载
- 积分:1
-
C#精简ERP系统(源码)
一款用C#编写的精简ERP系统,帮你了解ERP系统和C#开发的方法
- 2022-02-18 14:05:12下载
- 积分:1
-
在对本程序的快速排序和归并排序这两种算法的正确与否进行验证时,用手动输入的数据,本程序基本上完成了对输入数据进行的快速排序和归并排序!...
在对本程序的快速排序和归并排序这两种算法的正确与否进行验证时,用手动输入的数据,本程序基本上完成了对输入数据进行的快速排序和归并排序!-in the process of the rapid sequencing and merging the two sorting algorithms are correct for the test, with the manual input of data, the procedure is basically completed the data entry for the rapid sequencing and merging order!
- 2022-07-04 07:47:33下载
- 积分:1
-
Photo Database Access
数据库中图片的存取-Photo Database Access
- 2023-01-15 11:30:04下载
- 积分: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
-
银行定储模拟程序
银行定储模拟程序-Reserve Bank is scheduled simulation program
- 2022-03-19 22:05:44下载
- 积分:1
-
单链表的一些简单算法。
单链表的一些简单算法。-some simple algorithm.
- 2023-04-19 21:30:03下载
- 积分:1