`
- 浏览:
198237 次
- 性别:
- 来自:
大连
-
java 代码
- 这是我写的二叉树和四种遍历方式,请指教。
- p.s. 编号是按照满进行编号(location)。
-
-
-
- public class BinaryTree {
- private static final int ROOT_LOCATION = 1;
-
- private BinaryNode root;
-
- public BinaryTree() {
- }
-
- public BinaryNode getRoot() {
- return root;
- }
-
- public void setRoot(BinaryNode root) {
- this.root = root;
- this.root.setLocation(ROOT_LOCATION);
- updateLocation(ROOT_LOCATION, root);
- }
-
- public BinaryTree(BinaryNode root) {
- this();
- setRoot(root);
- }
-
- public BinaryTree(BinaryNode root, int location) {
- this();
- this.root = root;
- this.root.setLocation(location);
- updateLocation(location, root);
- }
-
- public boolean add(BinaryTree aTree, int location) {
- if (this == aTree) {
- return false;
- }
- BinaryNode aRoot = aTree.getRoot();
- return add(aRoot, location);
- }
-
- public boolean add(BinaryNode node, int location) {
- if (location == ROOT_LOCATION) {
- root = getRoot();
- if (root == null) {
- setRoot(node);
- return true;
- }
- return false;
- }
- BinaryNode parent = getParent(location);
- if (parent == null) {
- return false;
- }
- if (location % 2 == 0) {
- BinaryNode curNode = parent.getL_Child();
- if (curNode != null) {
- return false;
- }
- parent.setL_Child(node);
- } else {
- BinaryNode curNode = parent.getR_Child();
- if (curNode != null) {
- return false;
- }
- parent.setR_Child(node);
- }
- updateLocation(location, node);
- return true;
- }
-
- public BinaryNode getParent(int location) {
- int parentLoc = location / 2;
- BinaryNode parent = getNode(parentLoc);
- return parent;
- }
-
- private BinaryNode getNode(int location) {
- GetNodeHandler handler = new GetNodeHandler(location);
- TraverseUtil.traverseByPre(this, handler);
- return handler.getNode();
- }
-
- public void delete(int location) {
- BinaryNode parent = getParent(location);
- if (parent == null) {
- return;
- }
- if (location % 2 == 0) {
- parent.setL_Child(null);
- } else {
- parent.setR_Child(null);
- }
- }
-
- public boolean update(Object value, int location) {
- if (value instanceof BinaryNode) {
- return false;
- }
- BinaryNode node = getNode(location);
- if (node == null) {
- return false;
- }
- node.setData(value);
- return true;
- }
-
- private void updateLocation(int rootLocation, BinaryNode aRoot) {
- UpdateLocationHandler handler = new UpdateLocationHandler(rootLocation,
- aRoot);
- TraverseUtil.traverseByPre(aRoot, handler);
- }
-
- public int getTreeDepth() {
- MaxLocationHandler handler = new MaxLocationHandler(getRoot());
- TraverseUtil.traverseByPre(this, handler);
- int depth = getDepth(handler.getLocation());
- return depth;
- }
-
- public int size() {
- SizeHandler handler = new SizeHandler(getRoot());
- TraverseUtil.traverseByPre(this, handler);
- return handler.getSize();
- }
-
- private int getDepth(int max) {
- ++max;
- int depth = 1;
- while (max > 1) {
- max /= 2;
- ++depth;
- }
- return depth;
- }
-
- public Object getData(int loc) {
- BinaryNode node = getNode(loc);
- if (node == null) {
- return null;
- }
- return node.getData();
- }
-
- private class GetNodeHandler extends AbstractNodeHandler {
-
- public GetNodeHandler(final int location) {
- super(location);
- }
-
- public boolean handle(BinaryNode node) {
- if (node == null) {
- return false;
- }
- if (node.getLocation() == getLocation()) {
- setNode(node);
- return true;
- }
- return false;
- }
- }
-
- private class UpdateLocationHandler extends AbstractNodeHandler {
-
- public UpdateLocationHandler(int location, BinaryNode root) {
- super(location);
- root.setLocation(location);
- }
-
- public boolean handle(BinaryNode node) {
- if (node == null) {
- return false;
- }
-
- if (node.isExistL_Child()) {
- BinaryNode l = node.getL_Child();
- l.setLocation(node.getLocation() * 2);
- }
-
- if (node.isExistR_Child()) {
- BinaryNode r = node.getR_Child();
- r.setLocation(node.getLocation() * 2 + 1);
- }
- return false;
- }
- }
-
- private class MaxLocationHandler extends AbstractNodeHandler {
-
- public MaxLocationHandler(BinaryNode root) {
- super(root.getLocation());
- }
-
- public boolean handle(BinaryNode node) {
- if (node == null) {
- return false;
- }
- int curLoc = node.getLocation();
- if (curLoc > getLocation()) {
- setLocation(curLoc);
- }
- return false;
- }
- }
-
- private class SizeHandler extends AbstractNodeHandler {
- private int size;
-
- public int getSize() {
- return size;
- }
-
- public SizeHandler(BinaryNode root) {
- super(root.getLocation());
- }
-
- public boolean handle(BinaryNode node) {
- if (node == null) {
- return false;
- }
- size++;
- return false;
- }
- }
- }
-
- public class BinaryNode {
- public final static int SINGLENODE = 0;
-
- private Object data;
-
- private int location;
-
- private BinaryNode l_Child;
-
- private BinaryNode r_Child;
-
- public BinaryNode() {
- super();
- this.location = SINGLENODE;
- }
-
- public BinaryNode(Object data) {
- this();
- this.data = data;
- }
-
- public Object getData() {
- return data;
- }
-
- public void setData(Object data) {
- this.data = data;
- }
-
- public BinaryNode getL_Child() {
- return l_Child;
- }
-
- public void setL_Child(BinaryNode child) {
- l_Child = child;
- }
-
- public BinaryNode getR_Child() {
- return r_Child;
- }
-
- public void setR_Child(BinaryNode child) {
- r_Child = child;
- }
-
- public boolean isExistL_Child() {
- if (getL_Child() == null) {
- return false;
- }
- return true;
- }
-
- public boolean isExistR_Child() {
- if (getR_Child() == null) {
- return false;
- }
- return true;
- }
-
- public int getLocation() {
- return location;
- }
-
- public void setLocation(int location) {
- this.location = location;
- }
- }
-
- public interface IHandler {
-
-
-
- boolean handle(BinaryNode node);
- }
-
- public abstract class AbstractNodeHandler implements IHandler {
- private BinaryNode node;
-
- private int location;
-
- public AbstractNodeHandler(final int location) {
- super();
- this.location = location;
- }
-
- public abstract boolean handle(BinaryNode node);
-
- public BinaryNode getNode() {
- return node;
- }
-
- public void setNode(BinaryNode node) {
- this.node = node;
- }
-
- public int getLocation() {
- return location;
- }
-
- public void setLocation(int location) {
- this.location = location;
- }
-
- }
-
- import java.util.LinkedList;
-
- public class TraverseUtil {
-
- private TraverseUtil() {
- }
-
- public static void traverseByPre(BinaryTree tree, IHandler handler) {
- BinaryNode root = tree.getRoot();
- if (root == null) {
- return;
- }
- traverseByPre(root, handler);
- }
-
- public static void traverseByPre(BinaryNode node, IHandler handler) {
- boolean isStop = handler.handle(node);
- if (isStop) {
- return;
- }
- if (node.isExistL_Child()) {
- BinaryNode child = node.getL_Child();
- traverseByPre(child, handler);
- }
- if (node.isExistR_Child()) {
- BinaryNode child = node.getR_Child();
- traverseByPre(child, handler);
- }
- }
-
- public static void traverseByInOrder(BinaryTree tree, IHandler handler) {
- BinaryNode root = tree.getRoot();
- if (root == null) {
- return;
- }
- traverseByInOrder(root, handler);
- }
-
- public static void traverseByInOrder(BinaryNode node, IHandler handler) {
- if (node.isExistL_Child()) {
- BinaryNode child = node.getL_Child();
- traverseByInOrder(child, handler);
- }
-
- boolean isStop = handler.handle(node);
- if (isStop) {
- return;
- }
-
- if (node.isExistR_Child()) {
- BinaryNode child = node.getR_Child();
- traverseByInOrder(child, handler);
- }
- }
-
- public static void traverseByPost(BinaryTree tree, IHandler handler) {
- BinaryNode root = tree.getRoot();
- if (root == null) {
- return;
- }
- traverseByPost(root, handler);
- }
-
- public static void traverseByPost(BinaryNode node, IHandler handler) {
- if (node.isExistL_Child()) {
- BinaryNode child = node.getL_Child();
- traverseByPost(child, handler);
- }
-
- if (node.isExistR_Child()) {
- BinaryNode child = node.getR_Child();
- traverseByPost(child, handler);
- }
-
- boolean isStop = handler.handle(node);
- if (isStop) {
- return;
- }
- }
-
- public static void traverseByLevel(BinaryTree tree, IHandler handler) {
- BinaryNode node = tree.getRoot();
- LinkedList<BinaryNode> level = new LinkedList<BinaryNode>();
- level.addLast(node);
- traverseByLevel(handler, level);
- }
-
- private static void traverseByLevel(IHandler handler,
- LinkedList<BinaryNode> level) {
- if (level.isEmpty()) {
- return;
- }
- BinaryNode node = level.removeFirst();
- boolean isStop = handler.handle(node);
- if (isStop) {
- return;
- }
- if (node.isExistL_Child()) {
- level.addLast(node.getL_Child());
- }
- if (node.isExistR_Child()) {
- level.addLast(node.getR_Child());
- }
- traverseByLevel(handler, level);
- }
- }
分享到:
- 2007-09-07 21:56
- 浏览 1433
- 评论(0)
- 论坛回复 / 浏览 (0 / 2333)
- 查看更多
Global site tag (gtag.js) - Google Analytics
相关推荐
二叉树是一种在计算机科学中广泛应用的数据结构,它由节点(也称为结点)组成,每个节点最多有两个子节点,通常称为左子节点和右子节点。二叉树的深度是指从根节点到最远叶节点的最长路径上边的数目,即树的最大层数...
二叉树是一种特殊的树结构,每个节点最多只有两个子节点,通常分为左子节点和右子节点。在计算机科学中,二叉树被广泛应用于数据的组织和操作,如搜索、排序、文件系统等。本例子关注的是如何实现二叉树的图形显示,...
在计算机科学领域,二叉树是一种基础的数据结构,它由结点构成,每个结点最多有两个子节点,分别称为左子节点和右子节点。在众多的二叉树操作中,根据后序遍历序列(也称为后序序列)来构造二叉树是一项常见的任务。...
(2)先序、中序、后序遍历二叉树:递归算法。 (3)中序遍历二叉树:非递归算法(最好也能实现先序,后序非递归算法)。 (4)求二叉树的高度 。 (5)求二叉树的叶子个数。 (6)对于树中每一个元素值为x的结点...
- **答案解析**:如果一棵二叉树的中序遍历序列和后序遍历序列正好相反,那么该二叉树一定是任一结点都没有左孩子的二叉树。 #### 5. 二叉树的结点数范围 - **答案解析**:深度为k的二叉树最多有\(2^k - 1\)个结点...
在IT领域,特别是数据结构和算法的学习中,二叉树是一种重要的抽象数据类型。满二叉树是一种特殊的二叉树,其中每一层都是完全填充的,除了可能的最后一层,且最后一层的所有节点都尽可能地向左靠拢。而将满二叉树...
根据给定的信息,本文将详细介绍二叉树的基本概念及其在程序中的实现方法,包括二叉树的创建、遍历(前序、中序、后序)、复制、求高度、判断是否为完全二叉树以及利用二叉树进行表达式的计算等操作。 ### 一、...
### 构造二叉树与遍历二叉树 #### 一、二叉树的基本概念 二叉树(Binary Tree)是一种非线性数据结构,在计算机科学中被广泛应用于各种算法和程序设计中。一个二叉树由零个或多个节点组成,其中每个节点最多有两个子...
二叉树横向打印算法的实现 二叉树是一种基本的数据结构,在计算机科学和编程中广泛应用。本资源介绍了一种特殊的二叉树打印算法,即横向打印二叉树结构。该算法将二叉树的根节点放在屏幕的最左边,左子树在屏幕的...
### 知识点:复制一棵二叉树 #### 一、引言 在计算机科学领域,数据结构中的二叉树是一种常见的非线性数据结构,它由节点组成,每个节点最多有两个子节点,分别称为左子节点和右子节点。复制二叉树是指创建一个与原...
建立一棵二叉树,试编程实现二叉树的如下基本操作: 1. 按先序序列构造一棵二叉链表表示的二叉树T; 2. 对这棵二叉树进行遍历:先序、中序、后序以及层次遍历,分别输出结点的遍历序列; 3. 求二叉树的深度/结点数目...
1、 定义链接存储的二叉树类。 2、 实验验证如下算法的正确性、各种功能及指标: 1) 创建一棵二叉树,并对其初始化; 2)先根、中根、后根遍历二叉树; 3) 在二叉树中搜索给定结点的父结点; 4) 搜索二叉树中符合...
二叉树的建立与遍历 二叉树是一种重要的数据结构,它广泛应用于计算机科学和软件工程中。在这篇文章中,我们将讨论二叉树的建立和遍历,包括先序遍历、中序遍历和后序遍历。 一、数据结构的重要性 数据结构是...
1.二叉树的基本操作实现【问题描述】建立一棵二叉树,用递归方法实现二叉树的如下基本操作:(1)按先序序列构造一棵二叉链表表示的二叉树T;(2)对这棵二叉树进行遍历:先序、中序、后序以及层次遍历,分别输出...
### 二叉树树形输出知识点解析 #### 一、二叉树基本概念 二叉树是一种树形数据结构,其中每个节点最多有两个子节点,分别称为左子节点和右子节点。在计算机科学中,二叉树经常被用于实现各种算法和数据结构,如搜索...
二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py二叉树模拟器.py...
### 二叉树基本操作知识点解析 #### 一、实验目的 在本实验中,学习者将通过实际编程练习来加深对二叉树这一数据结构的理解,并熟练掌握其基本操作。具体目标包括: 1. **熟悉二叉树结点的结构和对二叉树的基本...
### 二叉树遍历实验报告知识点概览 #### 一、实验背景及目标 **实验背景:** 本次实验属于《数据结构》课程的一部分,旨在通过实际编程加深学生对二叉树这一数据结构的理解和应用能力。二叉树作为一种基本且重要的...