随笔分类 -  数据结构c语言版

45.散列查找
摘要: 阅读全文
posted @ 2021-09-07 19:25 upupup-999 阅读(46) 评论(0) 推荐(0) 编辑
44.B+树
摘要: 阅读全文
posted @ 2021-09-06 20:02 upupup-999 阅读(27) 评论(0) 推荐(0) 编辑
43.B树
摘要: 阅读全文
posted @ 2021-09-05 21:44 upupup-999 阅读(26) 评论(0) 推荐(0) 编辑
42.查找
摘要:查找成功 查找失败 分块查找 阅读全文
posted @ 2021-09-02 21:47 upupup-999 阅读(37) 评论(0) 推荐(0) 编辑
40.哈夫曼树
摘要: 阅读全文
posted @ 2021-08-14 22:12 upupup-999 阅读(39) 评论(0) 推荐(0) 编辑
39.平衡二叉树
摘要: 阅读全文
posted @ 2021-08-13 22:32 upupup-999 阅读(29) 评论(0) 推荐(0) 编辑
38.二叉排序树
摘要: 阅读全文
posted @ 2021-08-12 21:49 upupup-999 阅读(35) 评论(0) 推荐(0) 编辑
37.树和森林的遍历
摘要: 阅读全文
posted @ 2021-08-09 20:44 upupup-999 阅读(48) 评论(0) 推荐(0) 编辑
36.根据先序和中序构造二叉树的二叉链表
摘要: 阅读全文
posted @ 2021-08-06 23:16 upupup-999 阅读(22) 评论(0) 推荐(0) 编辑
35.树的存储结构
摘要: 阅读全文
posted @ 2021-07-31 22:29 upupup-999 阅读(37) 评论(0) 推荐(0) 编辑
34.线索二叉树的概念
摘要: 阅读全文
posted @ 2021-07-31 20:49 upupup-999 阅读(61) 评论(0) 推荐(0) 编辑
33.由遍历序列构造二叉树
摘要: 阅读全文
posted @ 2021-07-30 22:30 upupup-999 阅读(40) 评论(0) 推荐(0) 编辑
32.二叉树的层次遍历
摘要: 阅读全文
posted @ 2021-07-30 22:21 upupup-999 阅读(21) 评论(0) 推荐(0) 编辑
31.二叉树的先中后序遍历
摘要:1.先序遍历 #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct BiTNode{ ElemType data; struct BiTNode *lchild,*rchild; }BiTNode,*BiT 阅读全文
posted @ 2021-07-30 21:50 upupup-999 阅读(31) 评论(0) 推荐(0) 编辑
30.树的概念学习
摘要: 阅读全文
posted @ 2021-07-28 22:05 upupup-999 阅读(56) 评论(0) 推荐(0) 编辑
29.栈在递归中的应用
摘要:特殊矩阵的压缩存储 阅读全文
posted @ 2021-07-21 20:44 upupup-999 阅读(96) 评论(0) 推荐(0) 编辑
28.关于队列的笔记
摘要: 阅读全文
posted @ 2021-07-20 19:39 upupup-999 阅读(92) 评论(0) 推荐(0) 编辑
27.带头结点的单链表找出倒数第k个元素
摘要:#include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkList L 阅读全文
posted @ 2021-07-18 20:00 upupup-999 阅读(75) 评论(0) 推荐(0) 编辑
26.合并两个循环单链表要求合并后仍然保持循环单链表形式
摘要:#include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; bool InitList(Li 阅读全文
posted @ 2021-07-14 21:58 upupup-999 阅读(127) 评论(0) 推荐(0) 编辑




点击右上角即可分享
微信分享提示