赞
踩
package com.zc.study; /** * @author zc * 二叉树模拟 * 包含了:二叉树的增删改查功能 */ public class BinaryTreeDemo { public static void main(String[] args) { Hero h1 = new Hero(1,"鸣人"); Hero h2 = new Hero(2,"佐助"); Hero h3 = new Hero(3,"小樱"); Hero h4 = new Hero(4,"宁次"); BinaryTree bt = new BinaryTree(); bt.setRoot(h1); h1.setLeft(h2); h1.setRight(h3); h3.setRight(h4); System.out.println("前序遍历"); bt.preOrder(); System.out.println(); System.out.println("中序遍历"); bt.midOrder(); System.out.println(); System.out.println("后序遍历"); bt.postOrder(); System.out.println(); System.out.println("前序查找"); Hero hero1 = bt.preFind(4); System.out.println(hero1); System.out.println(); System.out.println("中序查找"); Hero hero2 = bt.preFind(3); System.out.println(hero2); System.out.println(); System.out.println("后序查找"); Hero hero3 = bt.preFind(2); System.out.println(hero3); System.out.println(); System.out.println("清空指定ID节点"); bt.deleteNode(2); bt.deleteNode(3); System.out.println(); System.out.println("清空节点后的前序遍历"); bt.preOrder(); System.out.println(); } } /** * 英雄类 */ class Hero{ private int id; private String name; /**左指针*/ private Hero left; /**右指针*/ private Hero right; public Hero(int id, String name) { this.id = id; this.name = name; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Hero getLeft() { return left; } public void setLeft(Hero left) { this.left = left; } public Hero getRight() { return right; } public void setRight(Hero right) { this.right = right; } /** * 前序遍历 * 步骤:先输出根节点,然后输出左节点、最后输出右节点,按层数输出 */ public void preOrder(){ //输出主节点,不用非空判断,能调用方法证明就有了根节点 System.out.println(this); //递归遍历左左节点 if(this.left != null){ this.left.preOrder(); } //递归遍历右节点 if(this.right != null){ this.right.preOrder(); } } /** * 中序遍历 * 步骤:先输出左节点,然后输出根节点、最后输出右节点,按层数输出 */ public void midOrder(){ //输出左节点 if(this.left != null){ this.left.midOrder(); } //输出根节点 System.out.println(this); //输出右节点 if(this.right != null){ this.right.midOrder(); } } /** * 后序遍历 * 步骤:先输出左节点,然后输出右节点、最后输出根节点,按层数输出 */ public void postOrder(){ //输出左节点 if(this.left != null){ this.left.postOrder(); } //输出右节点 if(this.right != null){ this.right.postOrder(); } //输出根节点 System.out.println(this); } /** * 前序查找:先根节点,再左节点,最后右节点 * @return */ public Hero findPreById(int id){ //先主节点:判断当前主节点是否是被查找的节点 if(this.id == id){ return this; } Hero result = null; //再左节点:遍历左节点 if(this.left != null){ result = this.left.findPreById(id); } //假设左节点找到了,就返回 if(result != null){ return result; } //最后右节点 if(this.right != null){ result = this.right.findPreById(id); } //无论右节点是否找到,都返回 return result; } /** * 中序查找:左节点 --> 根节点 --> 右节点 * @return */ public Hero findMid(int id){ Hero result = null; //左节点 if(this.left != null){ result = this.left.findMid(id); } if(result != null){ return result; } //根节点 if(this.id == id){ return this; } //右节点 if(this.right != null){ result = this.right.findMid(id); } //无论右节点是否找到,都要返回 return result; } /** * 后序查找;左节点 --> 右节点 --> 根节点 * @return */ public Hero findPost(int id){ Hero result = null; //左节点 if(this.left != null){ result = this.left.findPost(id); } if(result != null){ return result; } //右节点 if(this.right != null){ result = this.right.findPost(id); } //根节点 if(this.id == id){ return this; } //无论右节点是否找到,都要返回 return result; } /** * 删除节点 * 规定:如果删除的是叶子节点,则直接删除该节点;如果删除的是非叶子节点,则直接删除该子树 * 注意事项:由于我们的二叉树是单向的,所以我们只能通过判断该节点下一级的左节点或右节点是否是要删除的节点,而不是直接判断该节点是否是需要删除的节点 * 步骤:先判断当前节点的左节点,再判断它的右节点,如果都不是,则继续递归循环该操作 * 如果删除的是根节点,则直接将根节点的指针指向null即可,根节点的删除的在二叉树类中完成 * @return */ public void deleteNode(int id){ //清空左节点:判断左节点是否是要删除的节点 if(this.left != null && this.left.id == id){ //清空左节点的指针 this.left = null; //结束递归 return; } //清空右节点:判断右节点是否是要删除的节点 if(this.right != null && this.right.id == id){ //清空右节点的指针 this.right = null; //结束递归 return; } //继续从当前节点的左节点递归 if(this.left != null){ this.left.deleteNode(id); } //继续从当前节点的右节点递归 if(this.right != null){ this.right.deleteNode(id); } } @Override public String toString() { return this.id + "-" + this.name; } } /** * 二叉树类 */ class BinaryTree{ /**二叉树根节点*/ private Hero root; /**初始化二叉树根节点*/ public void setRoot(Hero root) { this.root = root; } /** * 前序遍历 */ public void preOrder(){ if(root != null){ root.preOrder(); }else{ System.out.println("二叉树为空"); } } /** * 中序遍历 */ public void midOrder(){ if(root != null){ root.midOrder(); }else{ System.out.println("二叉树为空"); } } /** * 后序遍历 */ public void postOrder(){ if(root != null){ root.postOrder(); }else{ System.out.println("二叉树为空"); } } /** * 前序查找 */ public Hero preFind(int id){ Hero result = null; if(root != null){ result = root.findPreById(id); } return result; } /** * 中序查找 */ public Hero midFind(int id){ Hero result = null; if(root != null){ result = root.findMid(id); } return result; } /** * 后序查找 */ public Hero postFind(int id){ Hero result = null; if(root != null){ result = root.findPost(id); } return result; } /** * 删除节点 */ public void deleteNode(int id){ if(root == null){ System.out.println("二叉树为空,无法删除"); return; } //清空根节点的指针并终止代码运行 if(root != null && root.getId() == id){ root = null; return; } //如果删除的不是根节点,则继续向下寻找 root.deleteNode(id); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。