
数据结构
东园桃与李
这个作者很懒,什么都没留下…
展开
-
二叉树的递归、层次建立/遍历和其递归/层次镜像
一. 二叉树的节点代码原创 2021-02-01 23:31:49 · 261 阅读 · 0 评论 -
数据结构:单链表创建、结点插入、删除代码
基于C++的实现 #define _CRI_SECURE_NO_WARNINGS #include<iostream> #include"stdlib.h" #include"time.h" using namespace std; constexpr auto maxsize = 20; constexpr auto OK = 1; constexpr auto ERROR = 0; constexpr auto TRUE = 1; constexpr auto FAlSE = 0;原创 2021-01-04 23:38:34 · 984 阅读 · 0 评论