`

二叉树

阅读更多
java 代码
  1. 这是我写的二叉树和四种遍历方式,请指教。   
  2. p.s. 编号是按照满进行编号(location)。   
  3.   
  4.   
  5.   
  6. public class BinaryTree {   
  7.     private static final int ROOT_LOCATION = 1;   
  8.   
  9.     private BinaryNode root;   
  10.   
  11.     public BinaryTree() {   
  12.     }   
  13.   
  14.     public BinaryNode getRoot() {   
  15.         return root;   
  16.     }   
  17.   
  18.     public void setRoot(BinaryNode root) {   
  19.         this.root = root;   
  20.         this.root.setLocation(ROOT_LOCATION);   
  21.         updateLocation(ROOT_LOCATION, root);   
  22.     }   
  23.   
  24.     public BinaryTree(BinaryNode root) {   
  25.         this();   
  26.         setRoot(root);   
  27.     }   
  28.   
  29.     public BinaryTree(BinaryNode root, int location) {   
  30.         this();   
  31.         this.root = root;   
  32.         this.root.setLocation(location);   
  33.         updateLocation(location, root);   
  34.     }   
  35.   
  36.     public boolean add(BinaryTree aTree, int location) {   
  37.         if (this == aTree) {   
  38.             return false;   
  39.         }   
  40.         BinaryNode aRoot = aTree.getRoot();   
  41.         return add(aRoot, location);   
  42.     }   
  43.   
  44.     public boolean add(BinaryNode node, int location) {   
  45.         if (location == ROOT_LOCATION) {   
  46.             root = getRoot();   
  47.             if (root == null) {   
  48.                 setRoot(node);   
  49.                 return true;   
  50.             }   
  51.             return false;   
  52.         }   
  53.         BinaryNode parent = getParent(location);   
  54.         if (parent == null) {   
  55.             return false;   
  56.         }   
  57.         if (location % 2 == 0) {   
  58.             BinaryNode curNode = parent.getL_Child();   
  59.             if (curNode != null) {   
  60.                 return false;   
  61.             }   
  62.             parent.setL_Child(node);   
  63.         } else {   
  64.             BinaryNode curNode = parent.getR_Child();   
  65.             if (curNode != null) {   
  66.                 return false;   
  67.             }   
  68.             parent.setR_Child(node);   
  69.         }   
  70.         updateLocation(location, node);   
  71.         return true;   
  72.     }   
  73.   
  74.     public BinaryNode getParent(int location) {   
  75.         int parentLoc = location / 2;   
  76.         BinaryNode parent = getNode(parentLoc);   
  77.         return parent;   
  78.     }   
  79.   
  80.     private BinaryNode getNode(int location) {   
  81.         GetNodeHandler handler = new GetNodeHandler(location);   
  82.         TraverseUtil.traverseByPre(this, handler);   
  83.         return handler.getNode();   
  84.     }   
  85.   
  86.     public void delete(int location) {   
  87.         BinaryNode parent = getParent(location);   
  88.         if (parent == null) {   
  89.             return;   
  90.         }   
  91.         if (location % 2 == 0) {   
  92.             parent.setL_Child(null);   
  93.         } else {   
  94.             parent.setR_Child(null);   
  95.         }   
  96.     }   
  97.   
  98.     public boolean update(Object value, int location) {   
  99.         if (value instanceof BinaryNode) {   
  100.             return false;   
  101.         }   
  102.         BinaryNode node = getNode(location);   
  103.         if (node == null) {   
  104.             return false;   
  105.         }   
  106.         node.setData(value);   
  107.         return true;   
  108.     }   
  109.   
  110.     private void updateLocation(int rootLocation, BinaryNode aRoot) {   
  111.         UpdateLocationHandler handler = new UpdateLocationHandler(rootLocation,   
  112.                 aRoot);   
  113.         TraverseUtil.traverseByPre(aRoot, handler);   
  114.     }   
  115.   
  116.     public int getTreeDepth() {   
  117.         MaxLocationHandler handler = new MaxLocationHandler(getRoot());   
  118.         TraverseUtil.traverseByPre(this, handler);   
  119.         int depth = getDepth(handler.getLocation());   
  120.         return depth;   
  121.     }   
  122.   
  123.     public int size() {   
  124.         SizeHandler handler = new SizeHandler(getRoot());   
  125.         TraverseUtil.traverseByPre(this, handler);   
  126.         return handler.getSize();   
  127.     }   
  128.   
  129.     private int getDepth(int max) {   
  130.         ++max;   
  131.         int depth = 1;   
  132.         while (max > 1) {   
  133.             max /= 2;   
  134.             ++depth;   
  135.         }   
  136.         return depth;   
  137.     }   
  138.   
  139.     public Object getData(int loc) {   
  140.         BinaryNode node = getNode(loc);   
  141.         if (node == null) {   
  142.             return null;   
  143.         }   
  144.         return node.getData();   
  145.     }   
  146.   
  147.     private class GetNodeHandler extends AbstractNodeHandler {   
  148.   
  149.         public GetNodeHandler(final int location) {   
  150.             super(location);   
  151.         }   
  152.   
  153.         public boolean handle(BinaryNode node) {   
  154.             if (node == null) {   
  155.                 return false;   
  156.             }   
  157.             if (node.getLocation() == getLocation()) {   
  158.                 setNode(node);   
  159.                 return true;   
  160.             }   
  161.             return false;   
  162.         }   
  163.     }   
  164.   
  165.     private class UpdateLocationHandler extends AbstractNodeHandler {   
  166.   
  167.         public UpdateLocationHandler(int location, BinaryNode root) {   
  168.             super(location);   
  169.             root.setLocation(location);   
  170.         }   
  171.   
  172.         public boolean handle(BinaryNode node) {   
  173.             if (node == null) {   
  174.                 return false;   
  175.             }   
  176.   
  177.             if (node.isExistL_Child()) {   
  178.                 BinaryNode l = node.getL_Child();   
  179.                 l.setLocation(node.getLocation() * 2);   
  180.             }   
  181.   
  182.             if (node.isExistR_Child()) {   
  183.                 BinaryNode r = node.getR_Child();   
  184.                 r.setLocation(node.getLocation() * 2 + 1);   
  185.             }   
  186.             return false;   
  187.         }   
  188.     }   
  189.   
  190.     private class MaxLocationHandler extends AbstractNodeHandler {   
  191.   
  192.         public MaxLocationHandler(BinaryNode root) {   
  193.             super(root.getLocation());   
  194.         }   
  195.   
  196.         public boolean handle(BinaryNode node) {   
  197.             if (node == null) {   
  198.                 return false;   
  199.             }   
  200.             int curLoc = node.getLocation();   
  201.             if (curLoc > getLocation()) {   
  202.                 setLocation(curLoc);   
  203.             }   
  204.             return false;   
  205.         }   
  206.     }   
  207.   
  208.     private class SizeHandler extends AbstractNodeHandler {   
  209.         private int size;   
  210.   
  211.         public int getSize() {   
  212.             return size;   
  213.         }   
  214.   
  215.         public SizeHandler(BinaryNode root) {   
  216.             super(root.getLocation());   
  217.         }   
  218.   
  219.         public boolean handle(BinaryNode node) {   
  220.             if (node == null) {   
  221.                 return false;   
  222.             }   
  223.             size++;   
  224.             return false;   
  225.         }   
  226.     }   
  227. }   
  228.   
  229. public class BinaryNode {   
  230.     public final static int SINGLENODE = 0;   
  231.   
  232.     private Object data;   
  233.   
  234.     private int location;   
  235.   
  236.     private BinaryNode l_Child;   
  237.   
  238.     private BinaryNode r_Child;   
  239.   
  240.     public BinaryNode() {   
  241.         super();   
  242.         this.location = SINGLENODE;   
  243.     }   
  244.   
  245.     public BinaryNode(Object data) {   
  246.         this();   
  247.         this.data = data;   
  248.     }   
  249.   
  250.     public Object getData() {   
  251.         return data;   
  252.     }   
  253.   
  254.     public void setData(Object data) {   
  255.         this.data = data;   
  256.     }   
  257.   
  258.     public BinaryNode getL_Child() {   
  259.         return l_Child;   
  260.     }   
  261.   
  262.     public void setL_Child(BinaryNode child) {   
  263.         l_Child = child;   
  264.     }   
  265.   
  266.     public BinaryNode getR_Child() {   
  267.         return r_Child;   
  268.     }   
  269.   
  270.     public void setR_Child(BinaryNode child) {   
  271.         r_Child = child;   
  272.     }   
  273.   
  274.     public boolean isExistL_Child() {   
  275.         if (getL_Child() == null) {   
  276.             return false;   
  277.         }   
  278.         return true;   
  279.     }   
  280.   
  281.     public boolean isExistR_Child() {   
  282.         if (getR_Child() == null) {   
  283.             return false;   
  284.         }   
  285.         return true;   
  286.     }   
  287.   
  288.     public int getLocation() {   
  289.         return location;   
  290.     }   
  291.   
  292.     public void setLocation(int location) {   
  293.         this.location = location;   
  294.     }   
  295. }   
  296.   
  297. public interface IHandler {   
  298.     /**  
  299.      * return true indicate stopping traversing, otherwise continuing.  
  300.      */  
  301.     boolean handle(BinaryNode node);   
  302. }   
  303.   
  304. public abstract class AbstractNodeHandler implements IHandler {   
  305.     private BinaryNode node;   
  306.   
  307.     private int location;   
  308.   
  309.     public AbstractNodeHandler(final int location) {   
  310.         super();   
  311.         this.location = location;   
  312.     }   
  313.   
  314.     public abstract boolean handle(BinaryNode node);   
  315.   
  316.     public BinaryNode getNode() {   
  317.         return node;   
  318.     }   
  319.   
  320.     public void setNode(BinaryNode node) {   
  321.         this.node = node;   
  322.     }   
  323.   
  324.     public int getLocation() {   
  325.         return location;   
  326.     }   
  327.   
  328.     public void setLocation(int location) {   
  329.         this.location = location;   
  330.     }   
  331.   
  332. }   
  333.   
  334. import java.util.LinkedList;   
  335.   
  336. public class TraverseUtil {   
  337.   
  338.     private TraverseUtil() {   
  339.     }   
  340.   
  341.     public static void traverseByPre(BinaryTree tree, IHandler handler) {   
  342.         BinaryNode root = tree.getRoot();   
  343.         if (root == null) {   
  344.             return;   
  345.         }   
  346.         traverseByPre(root, handler);   
  347.     }   
  348.   
  349.     public static void traverseByPre(BinaryNode node, IHandler handler) {   
  350.         boolean isStop = handler.handle(node);   
  351.         if (isStop) {   
  352.             return;   
  353.         }   
  354.         if (node.isExistL_Child()) {   
  355.             BinaryNode child = node.getL_Child();   
  356.             traverseByPre(child, handler);   
  357.         }   
  358.         if (node.isExistR_Child()) {   
  359.             BinaryNode child = node.getR_Child();   
  360.             traverseByPre(child, handler);   
  361.         }   
  362.     }   
  363.   
  364.     public static void traverseByInOrder(BinaryTree tree, IHandler handler) {   
  365.         BinaryNode root = tree.getRoot();   
  366.         if (root == null) {   
  367.             return;   
  368.         }   
  369.         traverseByInOrder(root, handler);   
  370.     }   
  371.   
  372.     public static void traverseByInOrder(BinaryNode node, IHandler handler) {   
  373.         if (node.isExistL_Child()) {   
  374.             BinaryNode child = node.getL_Child();   
  375.             traverseByInOrder(child, handler);   
  376.         }   
  377.   
  378.         boolean isStop = handler.handle(node);   
  379.         if (isStop) {   
  380.             return;   
  381.         }   
  382.   
  383.         if (node.isExistR_Child()) {   
  384.             BinaryNode child = node.getR_Child();   
  385.             traverseByInOrder(child, handler);   
  386.         }   
  387.     }   
  388.   
  389.     public static void traverseByPost(BinaryTree tree, IHandler handler) {   
  390.         BinaryNode root = tree.getRoot();   
  391.         if (root == null) {   
  392.             return;   
  393.         }   
  394.         traverseByPost(root, handler);   
  395.     }   
  396.   
  397.     public static void traverseByPost(BinaryNode node, IHandler handler) {   
  398.         if (node.isExistL_Child()) {   
  399.             BinaryNode child = node.getL_Child();   
  400.             traverseByPost(child, handler);   
  401.         }   
  402.   
  403.         if (node.isExistR_Child()) {   
  404.             BinaryNode child = node.getR_Child();   
  405.             traverseByPost(child, handler);   
  406.         }   
  407.   
  408.         boolean isStop = handler.handle(node);   
  409.         if (isStop) {   
  410.             return;   
  411.         }   
  412.     }   
  413.   
  414.     public static void traverseByLevel(BinaryTree tree, IHandler handler) {   
  415.         BinaryNode node = tree.getRoot();   
  416.         LinkedList<BinaryNode> level = new LinkedList<BinaryNode>();   
  417.         level.addLast(node);   
  418.         traverseByLevel(handler, level);   
  419.     }   
  420.   
  421.     private static void traverseByLevel(IHandler handler,   
  422.             LinkedList<BinaryNode> level) {   
  423.         if (level.isEmpty()) {   
  424.             return;   
  425.         }   
  426.         BinaryNode node = level.removeFirst();   
  427.         boolean isStop = handler.handle(node);   
  428.         if (isStop) {   
  429.             return;   
  430.         }   
  431.         if (node.isExistL_Child()) {   
  432.             level.addLast(node.getL_Child());   
  433.         }   
  434.         if (node.isExistR_Child()) {   
  435.             level.addLast(node.getR_Child());   
  436.         }   
  437.         traverseByLevel(handler, level);   
  438.     }   
  439. }   
分享到:
评论

相关推荐

    二叉树深度_二叉树查询_二叉树深度_

    二叉树是一种在计算机科学中广泛应用的数据结构,它由节点(也称为结点)组成,每个节点最多有两个子节点,通常称为左子节点和右子节点。二叉树的深度是指从根节点到最远叶节点的最长路径上边的数目,即树的最大层数...

    二叉树演示 实现二叉树图形显示

    二叉树是一种特殊的树结构,每个节点最多只有两个子节点,通常分为左子节点和右子节点。在计算机科学中,二叉树被广泛应用于数据的组织和操作,如搜索、排序、文件系统等。本例子关注的是如何实现二叉树的图形显示,...

    根据后序二叉树序列构造二叉树_扩展二叉树

    在计算机科学领域,二叉树是一种基础的数据结构,它由结点构成,每个结点最多有两个子节点,分别称为左子节点和右子节点。在众多的二叉树操作中,根据后序遍历序列(也称为后序序列)来构造二叉树是一项常见的任务。...

    二叉树建立 二叉树基本算法的实现

    (2)先序、中序、后序遍历二叉树:递归算法。 (3)中序遍历二叉树:非递归算法(最好也能实现先序,后序非递归算法)。 (4)求二叉树的高度 。 (5)求二叉树的叶子个数。 (6)对于树中每一个元素值为x的结点...

    第六章 树和二叉树作业及答案(100分).docx

    - **答案解析**:如果一棵二叉树的中序遍历序列和后序遍历序列正好相反,那么该二叉树一定是任一结点都没有左孩子的二叉树。 #### 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二叉树模拟器.py二叉树模拟器.py...

    设计程序实现二叉树结点的类型定义和对二叉树的基本操作

    ### 二叉树基本操作知识点解析 #### 一、实验目的 在本实验中,学习者将通过实际编程练习来加深对二叉树这一数据结构的理解,并熟练掌握其基本操作。具体目标包括: 1. **熟悉二叉树结点的结构和对二叉树的基本...

    二叉树遍历实验报告

    ### 二叉树遍历实验报告知识点概览 #### 一、实验背景及目标 **实验背景:** 本次实验属于《数据结构》课程的一部分,旨在通过实际编程加深学生对二叉树这一数据结构的理解和应用能力。二叉树作为一种基本且重要的...

Global site tag (gtag.js) - Google Analytics