前端数据结构:二叉树遍历详解
创作时间:
作者:
@小白创作中心
前端数据结构:二叉树遍历详解
引用
1
来源
1.
https://www.xin3721.com/Articlejquery/javascript36869.html
二叉树的遍历是指从根节点出发,按照某种顺序依次访问所有节点,而且只访问一次,二叉树的遍历方式很多,如果限制了从左到右的方式,那么主要有4种:
- 先序遍历:根左右
- 中序遍历:左根右
- 后序遍历:左右根
- 层序遍历:按层级、从上到下,在同一层从左到右遍历
以上一篇的二叉树为例子,先序遍历 先访问根节点,在访问左节点,在访问右节点,如图:
- 先(根)序遍历(根左右):A、B、D、E、C、F、G
- 中(根)序遍历(左根右) : D、B、E、A、F、C、G
- 后(根)序遍历(左右根) : D、E、B、F、G、C、A
- 层序序遍历(上到下,左到右):A、B、C、D、E、F、G
递归实现先序、中序、后序、层序遍历
二叉树的创建用上一篇链表方法存储的二叉树,只不过增加了4个遍历的方法而已。一颗大的树都是若干颗小树(根节点、左节点、右节点)构成,根节点也有可能是其他节点的左子树(树的根节点除外),所以递归遍历就是不断的递归子树的过程。
class Node {
constructor (data = '#') {
this.data = data
this.lNode = null
this.rNode = null
}
}
class BiTree {
root = null
nodeList = []
constructor (nodeList) {
this.root = new Node()
this.nodeList = nodeList
}
createNode (node) {
const data = this.nodeList.shift()
if (data === '#') return
node.data = data
// 下一个元素是不是空节点, 如果不是创建左节点
if (this.nodeList[0] !== '#') {
node.lNode = new Node(data)
}
this.createNode(node.lNode)
// 下一个元素是不是空节点, 如果不是创建右节点
if (this.nodeList[0] !== '#') {
node.rNode = new Node(data)
}
this.createNode(node.rNode)
}
preorderTraverse (node) {
if (node === null) return
console.log(node.data)
this.preorderTraverse(node.lNode)
this.preorderTraverse(node.rNode)
}
inorderTraverse (node) {
if (node === null) return
this.inorderTraverse(node.lNode)
console.log(node.data)
this.inorderTraverse(node.rNode)
}
postorderTraverse (node) {
if (node === null) return
this.postorderTraverse(node.lNode)
this.postorderTraverse(node.rNode)
console.log(node.data)
}
sequenceTraverse (root) {
if (!root) return
let queue = []
queue.push(root)
while (queue.length) {
const node = queue.shift()
console.log(node.data)
if(node.lNode) {
queue.push(node.lNode)
}
if (node.rNode) {
queue.push(node.rNode)
}
}
}
}
let arr = ['A','B','D','#','#','E','#','#','C','F','#', '#', 'G', '#', '#']
let bi = new BiTree(arr)
bi.createNode(bi.root)
console.log(bi.root)
console.log('----先序----')
console.log(bi.preorderTraverse(bi.root))
console.log('----中序----')
console.log(bi.inorderTraverse(bi.root))
console.log('----后序----')
console.log(bi.postorderTraverse(bi.root))
console.log('----层序----')
console.log(bi.sequenceTraverse(bi.root))
层级遍历使用了队列来实现,思路也比较简单,一开始入队根节点,出队最后一个节点,出队时把相关左节点、右节点入队,如此循环,队列为空即遍历完成。
非递归实现先序、中序、后序
二叉树的递归遍历非常容易理解,但因为是递归调用需要在内存栈中分配内存用来保存参数,层数多了内存容易溢出。
非递归先序基本思路:使用数组来模拟栈的数据结构,首先根节点入栈,然后出栈,在出栈的时候把该节点结果放入数组,然后把相关需要的节点按要求把左右节点入栈,如此循环一直到这个栈为空。
步骤:
- 根节点放入栈
- 取出栈顶的节点,把该节点结果放入数组
- 如果该右节点存在,将该节点右节点放入栈
- 如果该左节点存在,将该节点左节点放入栈
- 重复 1-4
- 栈为空退出循环
preorderNonRecursion (root) {
if (!root) return ''
let stack = []
let result = []
stack.push(root)
while (stack.length) {
const node = stack.pop()
result.push(node.data)
// 如果存在右节点,先压入右节点
if (node.rNode) {
stack.push(node.rNode)
}
if (node.lNode) {
stack.push(node.lNode)
}
}
return result
}
中序、后序代码基本思路类似代码如下:
inorderNonRecursion (root) {
if (!root) return ''
let stack = []
let result = []
// stack.push(root)
while (root !== null || stack.length) {
// 找到左节点
while (root !== null) {
stack.push(root)
root = root.lNode
}
root = stack.pop()
result.push(root.data)
// 右节点
root = root.rNode
}
return result
}
postorderNonRecursion (root) {
if (!root) return ''
let stack = []
let result = []
stack.push(root)
while (stack.length) {
const node = stack.pop()
result.unshift(node.data)
if (node.lNode) {
stack.push(node.lNode)
}
if (node.rNode) {
stack.push(node.rNode)
}
}
return result
}
递归遍历、非递归遍历完整代码
class Node {
constructor (data = '#') {
this.data = data
this.lNode = null
this.rNode = null
}
}
class BiTree {
root = null
nodeList = []
constructor (nodeList) {
this.root = new Node()
this.nodeList = nodeList
}
// 创建二叉树
createNode (node) {
const data = this.nodeList.shift()
if (data === '#') return
node.data = data
// 下一个元素是不是空节点, 如果不是创建左节点
if (this.nodeList[0] !== '#') {
node.lNode = new Node(data)
}
this.createNode(node.lNode)
// 下一个元素是不是空节点, 如果不是创建右节点
if (this.nodeList[0] !== '#') {
node.rNode = new Node(data)
}
this.createNode(node.rNode)
}
// 先序
preorderTraverse (node) {
if (node === null) return
console.log(node.data)
this.preorderTraverse(node.lNode)
this.preorderTraverse(node.rNode)
}
// 中序
inorderTraverse (node) {
if (node === null) return
this.inorderTraverse(node.lNode)
console.log(node.data)
this.inorderTraverse(node.rNode)
}
// 后序
postorderTraverse (node) {
if (node === null) return
this.postorderTraverse(node.lNode)
this.postorderTraverse(node.rNode)
console.log(node.data)
}
// 层序
sequenceTraverse (root) {
if (!root) return
let queue = []
queue.push(root)
while (queue.length) {
const node = queue.shift()
console.log(node.data)
if(node.lNode) {
queue.push(node.lNode)
}
if (node.rNode) {
queue.push(node.rNode)
}
}
}
// 非递归-先序
preorderNonRecursion (root) {
if (!root) return ''
let stack = []
let result = []
stack.push(root)
while (stack.length) {
const node = stack.pop()
result.push(node.data)
// 如果存在右节点,先压入右节点
if (node.rNode) {
stack.push(node.rNode)
}
if (node.lNode) {
stack.push(node.lNode)
}
}
return result
}
// 非递归-中序
inorderNonRecursion (root) {
if (!root) return ''
let stack = []
let result = []
// stack.push(root)
while (root !== null || stack.length) {
// 找到左节点
while (root !== null) {
stack.push(root)
root = root.lNode
}
root = stack.pop()
result.push(root.data)
// 右节点
root = root.rNode
}
return result
}
// 非递归-后序
postorderNonRecursion (root) {
if (!root) return ''
let stack = []
let result = []
stack.push(root)
while (stack.length) {
const node = stack.pop()
result.unshift(node.data)
if (node.lNode) {
stack.push(node.lNode)
}
if (node.rNode) {
stack.push(node.rNode)
}
}
return result
}
}
let arr = ['A','B','D','#','#','E','#','#','C','F','#', '#', 'G', '#', '#']
let bi = new BiTree(arr)
bi.createNode(bi.root)
console.log(bi.root)
console.log('----递归先序----')
console.log(bi.preorderTraverse(bi.root))
console.log('----非递归先序----')
console.log(bi.preorderNonRecursion(bi.root))
console.log('----递归中序----')
console.log(bi.inorderTraverse(bi.root))
console.log('----非递归中序----')
console.log(bi.inorderNonRecursion(bi.root))
console.log('----递归后序----')
console.log(bi.postorderTraverse(bi.root))
console.log('----非递归后序----')
console.log(bi.postorderNonRecursion(bi.root))
console.log('----层序----')
console.log(bi.sequenceTraverse(bi.root))
热门推荐
张艺谋新作《最忆是杭州》:全息投影技术打造沉浸式艺术盛宴
深圳医院创新“生活化健康服务”,护理人员助力全民健康
从信息传递到行为改变:护士在健康教育中的核心作用
吕小军教授揭秘光催化技术如何对抗温室效应
职场高效沟通与冲突管理:从理论到实践的全面提升
90亿人次出行!2025春节,中国游客海外游首选日本、泰国和新西兰等国家
中秋节的由来与习俗:从祭月到团圆
血型真的会影响心理健康吗?
贾乃亮单场破9694万,遥遥领先朱梓骁成“带货王”
演员转型主播月入破亿,朱梓骁引发演艺圈转型之争
朱梓骁转型记:每天直播10小时,从500位艺人中脱颖而出
电动自行车火灾频发,蓄电池保养攻略来了!
沈腾爆红背后:东北文化的秘密武器
沈腾新作票房大卖,开心麻花再创佳绩
沈腾的东北喜剧:笑点满满,温暖人心
婴儿手推车的选购方法
掌握这些技巧,让你的阿拉伯数字书写既规范又美观
古代的幽州在什么地方,为何幽州总是成为叛军的根据地?
金色质感、水元素、金属风:艺术阿拉伯数字设计指南
打破传统界限,全国首届阿拉伯数字书法大赛圆满收官
同样占据河北,拿着刘秀剧本的袁绍为何一败涂地?
药食两用的南瓜藤:降压通便功效佳,北方人却当废品
南瓜藤泡水治疗小结石,专家建议配合医生指导
南京市经济适用房申请全攻略:条件、流程、材料一文掌握
南京经济适用房申请条件大揭秘
安徽自驾游必备:车辆检查全攻略
安徽自驾游打卡黄山宏村,冬季美景不容错过
探访安徽历史文化名城:黄山、宏村、徽州古城
春节倒计时,学会这些英语祝福语秒变国际范儿
新春祝福:愿你拥有小樱的勇气与魔法