博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
二叉树遍历(递归)
阅读量:6567 次
发布时间:2019-06-24

本文共 2720 字,大约阅读时间需要 9 分钟。

// 测试二叉树遍历,递归算法    public class TestBinaryTree {    public static void main(String[] args) {    Node
g = new Node
("G", null, null); Node
e = new Node
("E", null, null); Node
f = new Node
("F", null, null); Node
d = new Node
("D", null, g); Node
b = new Node
("B", d, e); Node
c = new Node
("C", null, f); Node
a = new Node
("A", b, c); System.out.println("生成的二叉树:"); System.out.println(" A"); System.out.println(" | "); System.out.println(" |---------|"); System.out.println(" B C"); System.out.println(" | |"); System.out.println(" |---------| -----|"); System.out.println(" D E F"); System.out.println(" |"); System.out.println(" ----|"); System.out.println(" G"); System.out.println("二叉树深度:" + BinaryTree.getDepth(a)); System.out.print("前序遍历:"); BinaryTree.priorderTraversal(a); System.out.println(); System.out.print("中序遍历:"); BinaryTree.inorderTraversal(a); System.out.println(); System.out.print("后序遍历:"); BinaryTree.postorderTraversal(a); System.out.println(); } } // 二叉树 class BinaryTree { // 前序遍历 static
void priorderTraversal(Node
node) { if (node != null) { visitNode(node); priorderTraversal(node.getLeftChild()); priorderTraversal(node.getRightChild()); } } // 中序遍历 static
void inorderTraversal(Node
node) { if (node != null) { inorderTraversal(node.getLeftChild()); visitNode(node); inorderTraversal(node.getRightChild()); } } // 后序遍历 static
void postorderTraversal(Node
node) { if (node != null) { postorderTraversal(node.getLeftChild()); postorderTraversal(node.getRightChild()); visitNode(node); } } // 二叉树深度 static
int getDepth(Node
node) { if (node == null) { return 0; } int leftDepth = 0; int rightDepth = 0; leftDepth = getDepth(node.getLeftChild()); rightDepth = getDepth(node.getRightChild()); return (leftDepth > rightDepth ? leftDepth : rightDepth) + 1; } // 访问节点 static
void visitNode(Node
node) { System.out.print(node.getKey() + " "); } } // 节点 class Node
{ private T key; private Node
leftChild; private Node
rightChild; public Node() { } public Node(T key, Node
leftChild, Node
rightChild) { super(); www.2cto.com this.key = key; this.leftChild = leftChild; this.rightChild = rightChild; } public T getKey() { return key; } public void setKey(T key) { this.key = key; } public Node
getLeftChild() { return leftChild; } public void setLeftChild(Node
leftChild) { this.leftChild = leftChild; } public Node
getRightChild() { return rightChild; } public void setRightChild(Node
rightChild) { this.rightChild = rightChild; } }

 

    输出结果:

    生成的二叉树:
    A
    |
    |---------|
    B         C
    |         |
    |---------|     -----|
    D         E          F
    |
    ----|
    G
    二叉树深度:4
    前序遍历:A B D G E C F
    中序遍历:D G B E A C F
    后序遍历:G D E B F C A

转载地址:http://twpjo.baihongyu.com/

你可能感兴趣的文章
thinkphp查询
查看>>
iOS开发-Protocol协议及委托代理(Delegate)传值
查看>>
【BZOJ】1105: [POI2007]石头花园SKA
查看>>
MapReduce原理与设计思想
查看>>
Theano学习笔记(三)——图结构
查看>>
UVa - 11400 - Lighting System Design
查看>>
Oracle 11g 客户端使用
查看>>
luvit 被忽视的lua 高性能框架(仿nodejs)
查看>>
也许每个农村出来的码农都有个田园梦
查看>>
J2EE的13种核心技术
查看>>
Express.js 中的 Sessions 如何工作?(译)
查看>>
Web自动化之Headless Chrome概览
查看>>
【133天】尚学堂高淇Java300集视频精华笔记(71-72)
查看>>
剖析 Laravel 计划任务--事件属性
查看>>
Micronaut教程:如何使用基于JVM的框架构建微服务
查看>>
检查IP是否可用的方法
查看>>
互联网架构师必备技术 Docker仓库与Java应用服务动态发布那些事
查看>>
Intellij IDEA 2018.2 搭建Spring Boot 应用
查看>>
作为数据科学家,我都有哪些弱点
查看>>
(转)线程安全的CopyOnWriteArrayList介绍
查看>>