简单理解为对于一个节点来说,最多拥有一个上级节点,同时最多具备左右两个下级节点的数据结构。
由于很多排序算法都是基于二叉树实现的,多叉树也是二叉树延伸过去的,所以二叉树的建树和遍历就显得非常重要。
一般情况是给你一个串,要求让你以前序,中序,后序的方式建树。那么此时我们就需要首先了解三个概念:
前序遍历中序遍历后序遍历我们来看看一棵二叉树的结构:
0
1 2
3 4 5 6
0就是整个二叉树的根节点,1就是0这个节点的左子树,2就是0这个节点的右子树。有了这个知识,我们就可以理解前中后序遍历这个位置属性就是指的根在哪个位置,前序遍历就是根在前,所以就是根左子树右子树的遍历方式;中序遍历就是根在中间,所以就是左子树根右子树的遍历方式;后序遍历就是根在最后,所以就是左子树右子树根的遍历方式。
遍历的方式有三种,对应的建树方式有已知中序和前序建树,已知中序和后序建树,已知前序和后序建树三种。
如果我们仅仅是想构建一棵二叉平衡树,可以简单使用某一种序列建树。用伪代码表示这三种遍历方式就是
1.前序遍历的方式建树
new tree(根节点);buildtree(左子树);buildtree(右子树);
2.中序遍历的方式建树
buildtree(左子树);new tree(根节点);buildtree(右子树);
3.后序遍历的方式建树
buildtree(左子树);buildtree(右子树);new tree(根节点);
我们现在以序列 1, 2, 3, 4, 5, 6, 7, 8, 9 为例,如果是前序建树方式,那么二叉树的结构应该为:
实现也比较简单
package com.chaojilaji.book.tree;import 圆周率口诀com.chaojilaji.auto.autocode.utils.json;public class handle { /** * 前序建树 * * @param input * @param index * @return */ public static tree buildtreeprologue(int[] input, int index) { // todo: 2022/1/12 根节点就是当前index这个节点 tree tree = new tree(); tree.tvalue(input[index]); // todo: 2022/1/12 左右两个节点分别为 2*index-1和2*index+1 int[] children = new int[]{2 * index + 1, 2 * index + 2}; if (children[0] < input.length) { tree.tleftchild(buildtreeprologue(input, children[0])); } if (children[1] < input.length) { tree.trightchild(buildtreeprologue(input, children[1])); } return tree; } public static void demo() { int[] a = new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}; tree tree = buildtreeprologue(a, 0); system.out.println(json.tojson(tree)); } public static void main(string[] args) { demo(); }}
执行结果如下:
{ "value": 1, "left_child": { "value": 2, "left_child": { "value": 4, "left_child": { "value": 8, "left_child": null, "right_child": null }, "right_child": { "value": 9, "left_child": null, "right_child": null } }, "right_child": { "value": 5, "left_child": null, "right_child": null } }, "right_child": { "value": 3, "left_child": { "value": 6, "left_child": null, "right_child": null }, "right_child": { "value": 7, "left_child": null, "right_child": null } }}
以 1,2,3,4,5,6,7序列为例,如果是中序建树的方式,那么二叉树的结构应该为
代码如下:
package com.chaojilaji.book.tree;import com.chaojilaji.auto.autocode.utils.json;import com.chaojilaji.auto.autocode.utils.mathutils;import java.util.linkedlist;import java.util.objects;import java.util.queue;public class handle { /** * 中序建树 * @param input * @param height * @param maxheight * @return */ public static tree buildtree2(queue<integer> input, int height, int maxheight) { // todo: 2022/1/12 根节点就是当前index这个节点 tree tree = new tree(); if (height < maxheight) { tree.tleftchild(buildtree2(input, height + 1, maxheight)); } if (!input.impty()) { tree.tvalue(input.poll()); } if (height < maxheight) { tree.trightchild(buildtree2(input, height + 1, maxheight)); } return tree; } public static void demo() { int[] a = new int[]{1, 2, 3, 4, 5, 6, 7}; queue<integer> queue = new linkedlist<>(); for (int i = 0; i < a.length; i++) { queue.add(a[i]); } integer maxceng = new double(math.ceil(mathutils.getlogan(2, a.length + 1))).intvalue(); system.out.println(json.tojson(buildtree2(queue, 1, maxceng))); } public static void main(string[] args) { demo(); }}
相对前序建树以扩展的方式建立二叉树,中序建树由于无法很好的控制索引,所以这里使用了一个队列来存储整个序列,同时需要算出以当前的节点数,算出建立一棵二叉平衡树,最小的深度为多少。然后按照之前给出的伪代码,按照左根右的方式赋值和递归调用即可。
运行的结果如下:
{ "value": 4, "left_child": { "value": 2, "left_child": { "value": 1, "left_child": null, "right_child": null }, "right_child": { "value": 3, "left_child": null, "right_child": null } }, "right_child": { "value": 6, "left_child": { "value": 5, "left_child": null, "right_child": null }, "right_child": { "value": 7, "left_child": null, "right_child": null } }}
有了中序遍历,其实后序遍历就非常简单了,以序列1,2,3,4,5,6,7为例,建树应该为
代码如下:
package com.chaojilaji.book.tree;import com.chaojilaji.auto.autocode.utils.json;import com.chaojilaji.auto.autocode.utils.mathutils;import java.util.linkedlist;import java.util.objects;import java.util.queue;public class handle { /** * 后序建树 * * @return */ public static tree buildtree3(queue<integer> input, int height, int maxheight) { // todo: 2022/1/12 根节点就是当前index这个节点 tree tree = new tree(); if (height < maxheight) { tree.tleftchild(buildtree3(input, height + 1, maxheight)); } if (height < maxheight) { tree.trightchild(buildtree3(input, height + 1, maxheight)); } if (!input.impty()) { tree.tvalue(input.poll()); } return tree; } public static void demo() { int[] a = new int[]{1, 2, 3, 4, 5, 6, 7}; queue<integer> queue = new linkedlist<>(); for (int i = 0; i < a.length; i++) { queue.add(a[i]); } integer maxceng = new double(math.ceil(mathutils.getlogan(2, a.length + 1))).intvalue(); system.out.println(json.tojson(buildtree3(queue, 1, maxceng))); } public static void main(string[] args) { demo(); }}
通过分析三个建年终工作总结树方法的代码你可以发现,其实本质上,根赋值代码,与调用左右子树建树函数的摆放的位置不同,就早就了这三种不同的算法。
三种建树方法对应的三种遍历方法本质区别也就是打印值语句与调用左右子树打印值函数的摆放位置不同。如果举一反三的话助学,我们可以很容易的得出二叉树前中后序遍历的代码。那么,请你自己先尝试一下。
根据建树的经验,知道,我们只需要写出一种遍历方法,那么其他两种遍历方式都有了。区别只不过是换换打印语句的位置。
对于前序遍历,写法如下:
public static void print1(tree tree) { if (objects.isnull(tree)) return; if (objects.nonnull(tree.getvalue())) { system.out.print(tree.getvalue()); } if (objects.nonnull(tree.getleftchild())) { print1(tree.getleftchild()); } if (objects.nonnull(tree.getrightchild())) { print1(tree.getrightchild()); }}
那么我们来做一个实验,首先根据序列1,2,3,4,5,6,7利用前序遍历构建出一棵平衡二叉树,然后打印出其前序中序后序遍历的顺序。完整的代码如下:
package com.chaojilaji.book.tree;import com.chaojilaji.auto.autocode.utils.json;import com.chaojilaji.auto.autocode.utils.mathutils;import java.util.linkedlist;import java.util.objects;import java.util.queue;public class handle { /** * 前序建树 * * @param input * @param index * @return */ public static tree buildtreeprologue(int[] input, int index) { // todo: 2022/1/12 根节点就是当前index这个节点 tree tree = new tree(); tree.tvalue(input[index]); // todo: 2022/1/12 左右两个节点分别为 2*index-1和2*index+1 int[] children = new int[]{2 * index + 1, 2 * index + 2}; if (children[0] < input.length) { tree.tleftchild(buildtreeprologue(input, children[0])); } if (children[1] < input.length) { tree.trightchild(buildtreeprologue(input, children[1])); } return tree; } /** * 中序建树 * * @param input * @param height * @param maxheight * @return */ public static tree buildtree2(queue<integer> input, int height, int maxheight) { // todo: 2022/1/12 根节点就是当前index这个节点 tree tree = new tree(); if (height < maxheight) { tree.tleftchild(buildtree2(input, height + 1, maxheight)); } if (!input.impty()) { tree.tvalue(input.poll()); } if (height < maxheight) { tree.trightchild(buildtree2(input, height + 1, maxheight)); } return tree; } /** * 后序建树 * * @return */ public static tree buildtree3(queue<integer> input, int height, int maxheight) { // todo: 2022/1/12 根节点就是当前index这个节点 tree tree = new tree(); if (height < maxhe大禹治水教学反思ight) { tree.tleftchild(buildtree3(input, height + 1, maxheight)); } if (height < maxheight) { tree.trightchild(buildtree3(input, height + 1, maxheight)); } if (!input.impty()) { tree.tvalue(input.poll()); } return tree; } public static void print1(tree tree) { if (objects.isnull(tree)) return; if (objects.nonnull(tree.getvalue())) { system.out.print(tree.getvalue()); } if (objects.nonnull(tree.getleftchild())) { print1(tree.getleftchild()); } if (objects.nonnull(tree.getrightchild())) { print1(tree.getrightchild()); } } public static void print2(tree tree) { if (objects.isnull(tree)) return; if (objects.nonnull(tree.getleftchild())) { print2(tree.getleftchild()); } if (objects.nonnull(tree.getvalue())) { system.out.print(tree.getvalue()); } if (objects.nonnull(tree.getrightchild())) { print2(tree.getrightchild()); } } public static void print3(tree tree) { if (objects.isnull(tree)) return; 碧昂丝最好听的歌曲 if (objects.nonnull(tree.getleftchild())) { print3(tree.getleftchild()); } if (objects.nonnull(tree.getrightchild())) { print3(tree.getrightchild()); } if (objects.nonnull(tree.getvalue())) { system.out.print(tree.getvalue()); } } public static void demoprint() { int[] a = new int[]{1, 2, 3, 4, 5, 6, 7}; tree tree = buildtreeprologue(a, 0); print1(tree); system.out.println(); print2(tree); system.out.println(); print3(tree); } public static void main(string[] args) { demoprint(); }}
最终的结果如下:
以上就是详解java 二叉树的实现和遍历的详细内容,更多关于java二叉树的资料请关注www.887551.com其它相关文章!
本文发布于:2023-04-04 19:38:12,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/f40a5656ea7033a07d78f9cf9321b213.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:详解Java 二叉树的实现和遍历.doc
本文 PDF 下载地址:详解Java 二叉树的实现和遍历.pdf
留言与评论(共有 0 条评论) |