Golang 遍历二叉树


Posted in Golang onApril 19, 2022

1. 二叉树的定义

二叉树需满足的条件

① 本身是有序树

② 树中包含的各个节点的长度不能超过2,即只能是0、1或者2

Golang 遍历二叉树

2. 前序遍历

前序遍历二叉树的顺序:根——》左——》右

package main

import "fmt"

//定义结构体
type Student struct {
	Name  string
	Age   int
	Score float32
	left  *Student //左子树指针
	right *Student //右子树指针
}

//二叉树定义
func main() {
	//根节点
	var root Student
	root.Name = "root"
	root.Age = 18
	root.Score = 88

	//一级左子树
	var left1 Student
	left1.Name = "left1"
	left1.Age = 20
	left1.Score = 80

	root.left = &left1

	//一级右子树
	var right1 Student
	right1.Name = "right1"
	right1.Age = 22
	right1.Score = 100

	root.right = &right1

	//二级左子树
	var left2 Student
	left2.Name = "left2"
	left2.Age = 25
	left2.Score = 90

	left1.left = &left2

	//调用遍历函数
	Req(&root)

}

//递归算法遍历整个二叉树
func Req(tmp *Student) {
	for tmp == nil {
		return
	}
	fmt.Println(tmp)
	//遍历左子树
	Req(tmp.left)
	//遍历右子树
	Req(tmp.right)
}

输出结果如下

&{root 18 88 0xc0000c0480 0xc0000c04b0}
&{left1 20 80 0xc0000c04e0 <nil>}
&{left2 25 90 <nil> <nil>}
&{right1 22 100 <nil> <nil>}

3. 中序遍历

中序遍历:左——》根——》右

package main

import "fmt"

//定义结构体
type Student struct {
	Name  string
	Age   int
	Score float32
	left  *Student //左子树指针
	right *Student //右子树指针
}

//二叉树定义
func main() {
	//根节点
	var root Student
	root.Name = "root"
	root.Age = 18
	root.Score = 88

	//一级左子树
	var left1 Student
	left1.Name = "left1"
	left1.Age = 20
	left1.Score = 80

	root.left = &left1

	//一级右子树
	var right1 Student
	right1.Name = "right1"
	right1.Age = 22
	right1.Score = 100

	root.right = &right1

	//二级左子树
	var left2 Student
	left2.Name = "left2"
	left2.Age = 25
	left2.Score = 90

	left1.left = &left2

	//调用遍历函数
	Req(&root)

}

//递归算法遍历整个二叉树
func Req(tmp *Student) {
	for tmp == nil {
		return
	}

	//遍历左子树
	Req(tmp.left)

	//输出root节点
	fmt.Println(tmp)

	//遍历右子树
	Req(tmp.right)
}

输出结果如下

&{left2 25 90 <nil> <nil>}
&{left1 20 80 0xc000114510 <nil>}
&{root 18 88 0xc0001144b0 0xc0001144e0}
&{right1 22 100 <nil> <nil>}

4. 后序遍历

后序遍历:左——》右——》根

package main

import "fmt"

//定义结构体
type Student struct {
	Name  string
	Age   int
	Score float32
	left  *Student //左子树指针
	right *Student //右子树指针
}

//二叉树定义
func main() {
	//根节点
	var root Student
	root.Name = "root"
	root.Age = 18
	root.Score = 88

	//一级左子树
	var left1 Student
	left1.Name = "left1"
	left1.Age = 20
	left1.Score = 80

	root.left = &left1

	//一级右子树
	var right1 Student
	right1.Name = "right1"
	right1.Age = 22
	right1.Score = 100

	root.right = &right1

	//二级左子树
	var left2 Student
	left2.Name = "left2"
	left2.Age = 25
	left2.Score = 90

	left1.left = &left2

	//调用遍历函数
	Req(&root)

}

//递归算法遍历整个二叉树
func Req(tmp *Student) {
	for tmp == nil {
		return
	}

	//遍历左子树
	Req(tmp.left)

	//遍历右子树
	Req(tmp.right)

	//输出root节点
	fmt.Println(tmp)

}

输出结果如下

&{left2 25 90 <nil> <nil>}
&{left1 20 80 0xc0000c04e0 <nil>}
&{right1 22 100 <nil> <nil>}
&{root 18 88 0xc0000c0480 0xc0000c04b0}

到此这篇关于详解Go语言如何实现二叉树遍历的文章就介绍到这了!

Golang 相关文章推荐
Golang 实现超大文件读取的两种方法
Apr 27 Golang
golang DNS服务器的简单实现操作
Apr 30 Golang
Go标准容器之Ring的使用说明
May 05 Golang
Golang: 内建容器的用法
May 05 Golang
Golang 语言控制并发 Goroutine的方法
Jun 30 Golang
试了下Golang实现try catch的方法
Jul 01 Golang
golang 实用库gotable的具体使用
Jul 01 Golang
入门学习Go的基本语法
Jul 07 Golang
Go中的条件语句Switch示例详解
Aug 23 Golang
Golang map映射的用法
Apr 22 Golang
Golang实现可重入锁的示例代码
May 25 Golang
Go gorilla/sessions库安装使用
Aug 14 Golang
Golang MatrixOne使用介绍和汇编语法
Apr 19 #Golang
Golang 字符串的常见操作
Golang 链表的学习和使用
Golang Elasticsearches 批量修改查询及发送MQ
Apr 19 #Golang
GO语言异常处理分析 err接口及defer延迟
Apr 14 #Golang
GO语言字符串处理函数之处理Strings包
Apr 14 #Golang
golang的文件创建及读写操作
Apr 14 #Golang
You might like
长波知识介绍
2021/03/01 无线电
php创建sprite
2014/02/11 PHP
php获取随机数组列表的方法
2014/11/13 PHP
PHP实现的进度条效果详解
2016/05/03 PHP
php获取linux命令结果的实例
2017/03/13 PHP
php代码调试利器firephp安装与使用方法分析
2018/08/21 PHP
详解PHP神奇又有用的Trait
2019/03/25 PHP
js实现页面打印功能实例代码(附去页眉页脚功能代码)
2009/12/15 Javascript
在javascript中执行任意html代码的方法示例解读
2013/12/25 Javascript
JavaScript框架(iframe)操作总结
2014/04/16 Javascript
使用forever管理nodejs应用教程
2014/06/03 NodeJs
JS+CSS实现的拖动分页效果实例
2015/05/11 Javascript
JS判断是否为JSON对象及是否存在某字段的方法(推荐)
2016/11/29 Javascript
jQuery plugin animsition使用小结
2017/09/14 jQuery
使用express+multer实现node中的图片上传功能
2018/02/02 Javascript
用POSTMAN发送JSON格式的POST请求示例
2018/09/04 Javascript
微信公众号服务器验证Token步骤图解
2019/12/30 Javascript
VSCode Vue开发推荐插件和VSCode快捷键(小结)
2020/08/08 Javascript
[58:35]OG vs EG 2019国际邀请赛淘汰赛 胜者组 BO3 第二场 8.22
2019/09/05 DOTA
Python获取文件所在目录和文件名的方法
2017/01/12 Python
python 创建一个空dataframe 然后添加行数据的实例
2018/06/07 Python
详解Django的CSRF认证实现
2018/10/09 Python
python爬虫简单的添加代理进行访问的实现代码
2019/04/04 Python
使用python进行广告点击率的预测的实现
2019/07/04 Python
python中web框架的自定义创建
2019/09/08 Python
pytorch查看torch.Tensor和model是否在CUDA上的实例
2020/01/03 Python
python 中的paramiko模块简介及安装过程
2020/02/29 Python
长曲棍球装备:Lacrosse Monkey
2020/12/02 全球购物
Servlet都有哪些方法?主要作用是什么?
2014/03/04 面试题
收银出纳员岗位职责
2014/02/23 职场文书
2014组织生活会方案
2014/05/19 职场文书
党员承诺书格式
2014/05/21 职场文书
政府法律服务方案
2014/06/14 职场文书
工作失职检讨书500字
2014/10/17 职场文书
PostgreSQL自动更新时间戳实例代码
2021/11/27 PostgreSQL
JavaScript事件的委托(代理)的用法示例详解
2022/02/18 Javascript