登录
首页 » 数据结构 » classic example of the data structure

classic example of the data structure

于 2022-11-20 发布 文件大小:198.50 kB
0 131
下载积分: 2 下载次数: 1

代码说明:

数据结构的经典示例

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论


0 个回复

  • expulsion source management system
    学籍管理系统源码-expulsion source management system
    2022-08-11 03:59:41下载
    积分:1
  • FP的创作
    创建FP-Tree树的过程。从.txt文件中读取字符型数据,然后创建FP-Tree。-The creation of FP-Tree tree process. From. Txt file to read character data, and then create a FP-Tree.
    2022-06-28 10:25:20下载
    积分:1
  • 这个是Hilbert曲线的实现算法,可以具体演示出每级曲线的绘制过程,最多可实现8级曲线的绘制....
    这个是Hilbert曲线的实现算法,可以具体演示出每级曲线的绘制过程,最多可实现8级曲线的绘制.-Hilbert Curve is the realization of the algorithm can be demonstrated that each specific grade curve of the process of drawing up to achieve eight curve drawing.
    2022-06-18 23:23:49下载
    积分:1
  • 顺序查找法 关于的基本查找算法实现
    顺序查找法 关于数据结构的基本查找算法实现-law on the order of search data structure of the basic search algorithm
    2022-11-18 17:30:04下载
    积分:1
  • Some simple small programs, such as Havermann editor, minimum spanning tree, has...
    一些简单的小程序,如哈弗曼编辑器,最小生成树,哈希表的设计与实现-Some simple small programs, such as Havermann editor, minimum spanning tree, hash table design and implementation, etc.
    2023-02-07 13:25:03下载
    积分:1
  • Partner system: avail [0 .. m] can be used for table space, n for the distributi...
    伙伴系统:avail[0..m]为可利用空间表, n为申请分配量, 若有不小于n的空闲块, 则分配相应的存储块, 并返回其首地址,否则返回NULL -Partner system: avail [0 .. m] can be used for table space, n for the distribution of the volume of applications, if n is not less than the free block, then the distribution of the corresponding storage block, and return to its first address, otherwise return NULL
    2022-01-30 23:57:11下载
    积分:1
  • KCI接口访问Kingbase
    利用人大金仓提供的kci接口实现对数据库的访问,主要提供了数据库的连接、断开连接、执行增删改查和事务开启、事务回滚、事务提交等操作。此外还提供了数据库连接池和监控线程、维护线程从而提供数据库的访问效率,是一个不可多得的Kci封装接口。
    2022-03-13 10:34:12下载
    积分:1
  • files useful about dsp programme
    files useful about dsp programme
    2022-07-19 09:04: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
  • 火车站购票系统
    资源描述C++写的购票系统,可以实现查询车次信息,购票,退票等功能,车次信息是提前预定好的,可以自己修改,考虑到了多个站点以及发车时间问题,解决了购票冲突问题,即在不同车站买到同一个座位上的车票。
    2022-03-28 19:05:10下载
    积分:1
  • 696518资源总数
  • 105409会员总数
  • 23今日下载