数据结构的重要部分——二叉树,这里主要是完成二叉树的建立、前中后序遍历(其中中序和后序遍历以非递归的形式完成)、交换子树、计算树的高度等操作,学习二叉树的小伙伴可以来看看噢
2024-04-16 23:05:49 22KB 数据结构 递归与非递归
1
主要介绍了C语言实现找出二叉树中某个值的所有路径的方法,针对数据结构中二叉树的实用操作技巧,需要的朋友可以参考下
2023-03-03 23:13:49 27KB C语言 二叉树 所有路径
1
区别于网上大部分的资源,这是一个由C语言编写的(不是C++),更契合部分大学专业的结课任务,已实现增删改查输出等基本功能,代码经测试可运行(仅在C语言的环境下),需要的自取
1
用二叉树实现简单计算器
2022-11-14 15:15:53 11KB C语言 二叉树 计算器
1
cout<<" 二叉树链表存储功能演示 "<
2022-10-19 21:19:12 28KB 数据结构 C语言 二叉树
1
线索二叉树的先序,中序,后序遍历完整代码,在vs2013下编译通过
2022-06-25 21:55:11 2KB C语言 二叉树 遍历 线索
1
数据结构 二叉树 用C语言创建与遍历 前序 中序遍历 后序遍历
2022-06-16 13:48:11 12KB 二叉树 遍历
1
1 Overview For the 0th lab of 15-513, you will implement the data structure of cords, which provide constanttime string concatenation. This lab will give you practice in the style of programming you will need to be able to do proficiently, especially for the later assignments in the class The material covered should all be review for you. Some of the skills tested are: • Explicit memory management, as required in C. • Creating and manipulating pointer-based data structures. • Working with strin
2022-05-27 19:04:57 211KB C语言 二叉树
1
建立一颗二叉树,并用递归或非递归的算法选用先序、中序和后序遍历
2022-02-21 09:11:50 4KB 算法 C语言 二叉树 遍历
1
要求能够输入树的各个结点,并能够输出用不同方法遍历的遍历序列; 分别建立建立二叉树存储结构的的输入函数、输出层序遍历序列的函数、输出先序遍历序列的函数
2022-01-12 12:20:15 21KB c语言 二叉树遍历 先序 层序
1