登录
首页 » 数据结构 » 数据结构中最经常用到的,包括链表、双链表、二叉树、平衡二叉树、哈希表等...

数据结构中最经常用到的,包括链表、双链表、二叉树、平衡二叉树、哈希表等...

于 2022-08-10 发布 文件大小:16.14 kB
0 129
下载积分: 2 下载次数: 1

代码说明:

数据结构中最经常用到的,包括链表、双链表、二叉树、平衡二叉树、哈希表等-Data structure the most frequently used, including the list, double linked lists, binary tree, balanced binary tree, hash table, etc.

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

发表评论

0 个回复

  • achieve linear Table 4 operation, a very good version, the teacher gave full mar...
    用线性表实现四则运算,很好的一个版本,老师给了满分-achieve linear Table 4 operation, a very good version, the teacher gave full marks
    2022-10-27 07:05:04下载
    积分:1
  • 调试顺序栈的基本操作(清华大学出版社C语言版书本P44)...
    调试顺序结构栈的基本操作(清华大学出版社数据结构C语言版书本P44)-Debug stack order of the structure of the basic operations (Tsinghua University Press Data Structures C language version of the book P44)
    2023-08-27 19:10:03下载
    积分:1
  • its about the radix sort technique
    its about the radix sort technique
    2022-02-05 14:37:24下载
    积分:1
  • oracle进行转换格式程序
    oracle进行转换格式程序-format conversion process
    2022-03-16 06:37:28下载
    积分:1
  • 物资管理系统设计仅供参考
    物资管理系统设计仅供参考-material management system design is for reference only
    2022-02-05 21:52:14下载
    积分:1
  • ORACLE库的并集查询
    ORACLE数据库的并集查询-ORACLE database inquiries and Set
    2022-02-02 13:05:45下载
    积分:1
  • The stack data structure in the classic method
    数据结构中栈的经典算法――第一类背包问题,已经通过测试!-The stack data structure in the classic method- The first knapsack problem, has passed the test!
    2022-02-05 06:54:50下载
    积分: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# DataGridView与Excel互相导入
    C# DataGridView与Excel互相导入导出,比较方便,基于NPOI,这个比较稳定好用
    2022-03-14 11:55:52下载
    积分:1
  • 统计后生成图表,适用于报表等,简单实用!
    数据统计后生成图表,适用于报表等,简单实用!-data generated graphics, applicable to such statements, simple and practical!
    2023-01-03 05:30:08下载
    积分:1
  • 696518资源总数
  • 105540会员总数
  • 37今日下载