随笔分类 - 数据结构
摘要:数据结构 | 单链表 继续复习数据结构,这次是单链表 代码如下(有不明白的定义参考数据结构分类之前的文章): /* author: Mz1 mzi_mzi@163.com date: 2022/6/11 */ #include "mzdatastruct.h" // 用于测试数据结构 typedef
阅读全文
摘要:数据结构 | 顺序表 最近在复习数据结构,就准备把书上的代码都实现一遍。 /* author: Mz1 mzi_mzi@163.com date: 2022.6.11 */ #include "mzdatastruct.h" // 用于测试数据结构 typedef int ElemType; //
阅读全文
摘要:二叉树的创建和三种遍历方式 帮同学写作业顺带复习了一下 直接丢代码了: #include <stdio.h> #include <stdlib.h> // 二叉树节点结构体&指针类型 typedef struct BiTNode { char data; // 数据域 struct BiTNode*
阅读全文