二叉树的先中后序遍历-JS递归实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉树的先中后序遍历-JS递归实现相关的知识,希望对你有一定的参考价值。

 

 1 const bt = {
 2     val: 1,
 3     left: {
 4         val: 2,
 5         left: {
 6             val: 4,
 7             left: null,
 8             right: null,
 9         },
10         right: {
11             val: 5,
12             left: null,
13             right: null,
14         },
15     },
16     right: {
17         val: 3,
18         left: {
19             val: 6,
20             left: null,
21             right: null,
22         },
23         right: {
24             val: 7,
25             left: null,
26             right: null,
27         },
28     },
29 };
30 //先序遍历
31 const preorder = (root) => {
32     if(!root) {return;}
33     console.log(root.val);
34     preorder(root.left);
35     preorder(root.right);
36 };
37 
38 preorder(bt);
39 
40 //中序遍历
41 const inorder = (root) => {
42     if(!root) {return;}
43     inorder(root.left);
44     console.log(root.val);
45     inorder(root.right);
46 };
47 inorder(bt);
48 
49 //后序遍历
50 const postorder = (root) => {
51     if(!root) {return;}
52     postorder(root.left);
53     postorder(root.right);
54     console.log(root.val);
55 };
56 
57 postorder(bt);

 

以上是关于二叉树的先中后序遍历-JS递归实现的主要内容,如果未能解决你的问题,请参考以下文章

一个套路,写出来二叉树的迭代遍历

二叉树:前中后序迭代方式的写法就不能统一一下么?

JS中的二叉树遍历

二叉树先中后序遍历(递归非递归)

二叉树先中后序遍历(递归非递归)

二叉树先中后序遍历(递归非递归)