欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【算法】二叉树的前序、中序、后序、层序遍历和还原。

程序员文章站 2023-02-18 10:10:34
一、构建二叉树 我们构建一个如下图所示的二叉树: 我们使用下面的数据结构来描绘出这个二叉树 二、二叉树的遍历 前序遍历: 中序遍历: 后序遍历: 从上面可以看到,前序、中序、后序遍历的算法基本上差不多,其主要是在对根节点的访问顺序不同,然后利用递归的方式来进行实现。 层序遍历: 跟其他遍历不同,层序 ......

一、构建二叉树

我们构建一个如下图所示的二叉树:

【算法】二叉树的前序、中序、后序、层序遍历和还原。

我们使用下面的数据结构来描绘出这个二叉树

 1 public class node {
 2     private string name = "";
 3     public node leftchild;
 4     public node rightchild;
 5 
 6     public node(string name) {
 7         this.name = name;
 8     }
 9 
10     public node() {
11     }
12 
13     public void setname(string name) {
14         this.name = name;
15     }

二、二叉树的遍历

前序遍历:

 1     /**
 2      * 前序遍历
 3      */
 4     public string readpre() {
 5         stringbuilder result = new stringbuilder();
 6         result.append(name); //前序遍历
 7         if (leftchild != null) {
 8             result.append(leftchild.readpre());
 9         }
10         if (rightchild != null) {
11             result.append(rightchild.readpre());
12         }
13         return result.tostring();
14     }

中序遍历:

 1     /**
 2      * 中序遍历
 3      */
 4     public string readmid() {
 5         stringbuilder result = new stringbuilder();
 6         if (leftchild != null) {
 7             result.append(leftchild.readmid());
 8         }
 9         result.append(name); //中序遍历
10         if (rightchild != null) {
11             result.append(rightchild.readmid());
12         }
13         return result.tostring();
14     }

后序遍历:

 1     /**
 2      * 后序遍历
 3      */
 4     public string readend() {
 5         stringbuilder result = new stringbuilder();
 6         if (leftchild != null) {
 7             result.append(leftchild.readend());
 8         }
 9         if (rightchild != null) {
10             result.append(rightchild.readend());
11         }
12         result.append(name); //后序遍历
13         return result.tostring();
14     }

从上面可以看到,前序、中序、后序遍历的算法基本上差不多,其主要是在对根节点的访问顺序不同,然后利用递归的方式来进行实现。

层序遍历:

 1     /**
 2      * 层序遍历
 3      */
 4     public string readlevel() {
 5         queue<node> queue = new linkedlist<>();
 6         stringbuilder result = new stringbuilder();
 7         queue.offer(this);
 8         while (!queue.isempty()) {
 9             node curnode = queue.poll();
10             result.append(curnode.name);
11             if (curnode.leftchild != null) {
12                 queue.offer(curnode.leftchild);
13             }
14             if (curnode.rightchild != null) {
15                 queue.offer(curnode.rightchild);
16             }
17         }
18         return result.tostring();
19     }

跟其他遍历不同,层序遍历需要借助队列来进行实现。首先将根节点放到队列中,然后遍历循环,依次将左孩子和右孩子放置到队列中。

三、还原二叉树

在第二章节中,获得到前序、中序、后序、层序的结果依次如下:

1         string pre = "abdghceif"; //前序遍历
2         string mid = "gdhbaeicf"; //中序遍历
3         string end = "ghdbiefca"; //后序遍历
4         string level = "abcdefghi"; //层序遍历

那能否通过上面的字符串还原出二叉树的的形状呢?这个分情况讨论

前序+中序:

思路:通过前序获得根节点的位置,利用根节点将中序序列分为左子树和右子树,然后不断的递归划分即可。

代码:

 1     /**
 2      * 根据前序和中序排序表获取树
 3      */
 4     private static node buildtreebypremid(char[] pre, int prebegin, int preend, char[] mid, int midbegin, int midend) {
 5         node root = new node();
 6         root.setname(pre[prebegin] + "");
 7 
 8         int midrootloc = 0;
 9         for (int i = midbegin; i <= midend; i++) {
10             if (mid[i] == pre[prebegin]) {
11                 midrootloc = i;
12                 break;
13             }
14         }
15 
16         //递归得到左子树
17         if (prebegin + (midrootloc - midbegin) >= prebegin + 1 && (midrootloc - 1) >= midbegin) {
18             node leftchild = buildtreebypremid(pre, prebegin + 1, prebegin + (midrootloc - midbegin),
19                     mid, midbegin, midrootloc - 1);
20             root.leftchild = leftchild;
21         }
22 
23         //递归得到右子树
24         if (preend >= (preend - (midend - midrootloc) + 1) && (midend >= midrootloc + 1)) {
25             node rightchild = buildtreebypremid(pre, preend - (midend - midrootloc) + 1, preend,
26                     mid, midrootloc + 1, midend);
27             root.rightchild = rightchild;
28         }
29 
30         return root;
31     }

后序+中序:
思路:通过后序获取根节点的位置,然后在中序中划分左子树和右子树,然后递归划分即可。

代码:

 1     /**
 2      * 根据后序和中序遍历还原树
 3      */
 4     private static node buildtreebymidend(char[] mid, int midbegin, int midend, char[] end, int endbegin, int endend) {
 5         node root = new node();
 6         root.setname(end[endend] + "");
 7         int midrootloc = 0;
 8         for (int i = midend; i >= midbegin; i--) {
 9             if (mid[i] == end[endend]) {
10                 midrootloc = i;
11                 break;
12             }
13         }
14 
15         //还原左子树
16         if (midrootloc - 1 >= midbegin && (endbegin + (midrootloc - midbegin) - 1 >= endbegin)) {
17             node leftchild = buildtreebymidend(mid, midbegin, midrootloc - 1, end, endbegin, endbegin + (midrootloc - midbegin) - 1);
18             root.leftchild = leftchild;
19         }
20 
21         //还原右子树
22         if (midend >= midrootloc + 1 && (endend - 1 >= endend - (midend - midrootloc))) {
23             node rightchild = buildtreebymidend(mid, midrootloc + 1, midend, end, endend - (midend - midrootloc), endend - 1);
24             root.rightchild = rightchild;
25         }
26 
27         return root;
28     }

层序+中序:

思路:根据层序遍历获取根节点的位置,然后将中序划分为左子树和右子树,然后根据划分出的左子树和右子树分别在层序遍历中获取其对应的层序顺序,然后递归调用划分即可。

代码如下:

 1     /**
 2      * 根据层序遍历和中序遍历得到结果
 3      * @return
 4      */
 5     private static node buildtreebymidlevel(char[] mid, char[] level, int midbegin, int midend) {
 6         node root = new node(level[0] + "");
 7 
 8         int midloc = -1;
 9         for (int i = midbegin; i <= midend; i++) {
10             if (mid[i] == level[0]) {
11                 midloc = i;
12                 break;
13             }
14         }
15 
16         if (level.length >= 2) {
17             if (isleft(mid, level[0], level[1])) {
18                 node left = buildtreebymidlevel(mid, getlevelstr(mid, midbegin, midloc - 1, level), midbegin, midloc - 1);
19                 root.leftchild = left;
20                 if (level.length >= 3 && !isleft(mid, level[0], level[2])) {
21                     node right = buildtreebymidlevel(mid, getlevelstr(mid, midloc + 1, midend, level), midloc + 1, midend);
22                     root.rightchild = right;
23                 }
24             } else {
25                 node right = buildtreebymidlevel(mid, getlevelstr(mid, midloc + 1, midend, level), midloc + 1, midend);
26                 root.rightchild = right;
27             }
28         }
29         return root;
30     }
31 
32     /**
33      * 将中序序列中midbegin与midend的字符依次从level中提取出来,保持level中的字符顺序不变
34      */
35     private static char[] getlevelstr(char[] mid, int midbegin, int midend, char[] level) {
36         char[] result = new char[midend - midbegin + 1];
37         int curloc = 0;
38         for (int i = 0; i < level.length; i++) {
39             if (contains(mid, level[i], midbegin, midend)) {
40                 result[curloc++] = level[i];
41             }
42         }
43         return result;
44     }
45 
46     /**
47      * 如果str字符串的begin和end位置之间(包括begin和end)含有字符target,则返回true。
48      */
49     private static boolean contains(char[] str, char target, int begin, int end) {
50         for (int i = begin; i <= end; i++) {
51             if (str[i] == target) {
52                 return true;
53             }
54         }
55         return false;
56     }

其他的遍历组合均不能还原出二叉树的形状,因为无法确认其左右孩子。例如,前序为ab,后序为ab,则无法确认出,b节点是a节点的左孩子还是右孩子,因此无法还原。

完整代码已经上传至github:

https://github.com/yanyojun/tree