转自:http://blog.csdn.net/lovesqcc/article/details/6246615
为了克服对树结构编程的恐惧感,决心自己实现一遍二叉查找树,以便掌握关于树结构编程的一些技巧和方法。以下是基本思路:
[1]
关于容器与封装。封装,是一种非常重要的系统设计思想;无论是面向过程的函数,还是面向对象的对象,都是实现抽象和封装的技术手段。要使系统更加安全更具可维护性,就应当将封装思想谨记心中。容器是封装思想的绝好示例。用户对容器的印象应该简洁地表达为:A.
可以存入指定的东西; B. 可以取出所期望的东西。
而至于这容器中究竟有什么机关,藏的是毒蛇还是黄金,都是对用户不可见的。二叉查找树就是这样一个容器。面向对象编程中,为实现树结构,自然要对树结点对象进行建模。这里采用了内部类;外部类对二叉查找树进行建模,而树结点作为内部类实现。
[2]
本程序尽量实现一个比较实用的二叉查找树,其中包括动态的插入、删除操作;查询给定关键字、最小关键字、最大关键字;获取二叉树的有序列表(用于排序)等。因为我希望以后还能用到这个容器的,而不仅仅是编程练习。二叉查找树操作的大部分算法参考了《算法导论2》第12章内容,删除操作略显笨拙。程序中有错误之处,欢迎指出。
[3] 程序如下:
-
-
-
-
-
-
-
-
- package datastructure.tree;
- import java.util.ArrayList;
- import java.util.List;
-
- public class BinarySearchTree {
-
-
- private TreeNode root = null;
-
-
- private List<TreeNode> nodelist = new ArrayList<TreeNode>();
-
- private class TreeNode {
-
- private int key;
- private TreeNode leftChild;
- private TreeNode rightChild;
- private TreeNode parent;
-
- public TreeNode(int key, TreeNode leftChild, TreeNode rightChild, TreeNode parent) {
- this.key = key;
- this.leftChild = leftChild;
- this.rightChild = rightChild;
- this.parent = parent;
- }
- public int getKey() {
- return key;
- }
- public String toString()
- {
- String leftkey = (leftChild == null ? "" : String.valueOf(leftChild.key));
- String rightkey = (rightChild == null ? "" : String.valueOf(rightChild.key));
- return "(" + leftkey + " , " + key + " , " + rightkey + ")";
- }
-
- }
-
-
-
-
-
- public boolean isEmpty()
- {
- if (root == null) {
- return true;
- } else {
- return false;
- }
- }
-
-
-
-
- public void TreeEmpty() throws Exception
- {
- if (isEmpty()) {
- throw new Exception("树为空!");
- }
- }
-
-
-
-
-
-
- public TreeNode search(int key)
- {
- TreeNode pNode = root;
- while (pNode != null && pNode.key != key) {
- if (key < pNode.key) {
- pNode = pNode.leftChild;
- }
- else {
- pNode = pNode.rightChild;
- }
- }
- return pNode;
- }
-
-
-
-
-
-
- public TreeNode minElemNode(TreeNode node) throws Exception
- {
- if (node == null) {
- throw new Exception("树为空!");
- }
- TreeNode pNode = node;
- while (pNode.leftChild != null) {
- pNode = pNode.leftChild;
- }
- return pNode;
- }
-
-
-
-
-
-
- public TreeNode maxElemNode(TreeNode node) throws Exception
- {
- if (node == null) {
- throw new Exception("树为空!");
- }
- TreeNode pNode = node;
- while (pNode.rightChild != null) {
- pNode = pNode.rightChild;
- }
- return pNode;
- }
-
-
-
-
-
-
-
- public TreeNode successor(TreeNode node) throws Exception
- {
- if (node == null) {
- return null;
- }
-
-
- if (node.rightChild != null) {
- return minElemNode(node.rightChild);
- }
-
- TreeNode parentNode = node.parent;
- while (parentNode != null && node == parentNode.rightChild) {
- node = parentNode;
- parentNode = parentNode.parent;
- }
- return parentNode;
- }
-
-
-
-
-
-
-
-
- public TreeNode precessor(TreeNode node) throws Exception
- {
- if (node == null) {
- return null;
- }
-
-
- if (node.leftChild != null) {
- return maxElemNode(node.leftChild);
- }
-
- TreeNode parentNode = node.parent;
- while (parentNode != null && node == parentNode.leftChild) {
- node = parentNode;
- parentNode = parentNode.parent;
- }
- return parentNode;
- }
-
-
-
-
-
-
- public void insert(int key)
- {
- TreeNode parentNode = null;
- TreeNode newNode = new TreeNode(key, null, null,null);
- TreeNode pNode = root;
- if (root == null) {
- root = newNode;
- return ;
- }
- while (pNode != null) {
- parentNode = pNode;
- if (key < pNode.key) {
- pNode = pNode.leftChild;
- }
- else if (key > pNode.key) {
- pNode = pNode.rightChild;
- } else {
-
- return ;
- }
- }
- if (key < parentNode.key) {
- parentNode.leftChild = newNode;
- newNode.parent = parentNode;
- }
- else {
- parentNode.rightChild = newNode;
- newNode.parent = parentNode;
- }
-
- }
-
-
-
-
-
- public void delete(int key) throws Exception
- {
- TreeNode pNode = search(key);
- if (pNode == null) {
- throw new Exception("树中不存在要删除的关键字!");
- }
- delete(pNode);
- }
-
-
-
-
-
-
-
-
- private void delete(TreeNode pNode) throws Exception
- {
- if (pNode == null) {
- return ;
- }
- if (pNode.leftChild == null && pNode.rightChild == null) {
- TreeNode parentNode = pNode.parent;
- if (pNode == parentNode.leftChild) {
- parentNode.leftChild = null;
- } else {
- parentNode.rightChild = null;
- }
- return ;
- }
- if (pNode.leftChild == null && pNode.rightChild != null) {
- TreeNode parentNode = pNode.parent;
- if (pNode == parentNode.leftChild) {
- parentNode.leftChild = pNode.rightChild;
- pNode.rightChild.parent = parentNode;
- }
- else {
- parentNode.rightChild = pNode.rightChild;
- pNode.rightChild.parent = parentNode;
- }
- return ;
- }
- if (pNode.leftChild != null && pNode.rightChild == null) {
- TreeNode parentNode = pNode.parent;
- if (pNode == parentNode.leftChild) {
- parentNode.leftChild = pNode.leftChild;
- pNode.rightChild.parent = parentNode;
- }
- else {
- parentNode.rightChild = pNode.leftChild;
- pNode.rightChild.parent = parentNode;
- }
- return ;
- }
-
- TreeNode successorNode = successor(pNode);
- delete(successorNode);
- pNode.key = successorNode.key;
- }
-
-
-
-
-
- public List<TreeNode> inOrderTraverseList()
- {
- if (nodelist != null) {
- nodelist.clear();
- }
- inOrderTraverse(root);
- return nodelist;
- }
-
-
-
-
-
- private void inOrderTraverse(TreeNode root)
- {
- if (root != null) {
- inOrderTraverse(root.leftChild);
- nodelist.add(root);
- inOrderTraverse(root.rightChild);
- }
- }
-
-
-
-
-
- public String toStringOfOrderList()
- {
- StringBuilder sbBuilder = new StringBuilder(" [ ");
- for (TreeNode p: inOrderTraverseList()) {
- sbBuilder.append(p.key);
- sbBuilder.append(" ");
- }
- sbBuilder.append("]");
- return sbBuilder.toString();
- }
-
-
-
-
- public String toString()
- {
- StringBuilder sbBuilder = new StringBuilder(" [ ");
- for (TreeNode p: inOrderTraverseList()) {
- sbBuilder.append(p);
- sbBuilder.append(" ");
- }
- sbBuilder.append("]");
- return sbBuilder.toString();
- }
- public TreeNode getRoot() {
- return root;
- }
-
- public static void testNode(BinarySearchTree bst, TreeNode pNode) throws Exception {
- System.out.println("本结点: " + pNode);
- System.out.println("前趋结点: " + bst.precessor(pNode));
- System.out.println("后继结点: " + bst.successor(pNode));
- }
-
- public static void testTraverse(BinarySearchTree bst) {
- System.out.println("二叉树遍历:" + bst);
- System.out.println("二叉查找树转换为有序列表: " + bst.toStringOfOrderList());
- }
-
- public static void main(String[] args)
- {
- try {
- BinarySearchTree bst = new BinarySearchTree();
- System.out.println("查找树是否为空? " + (bst.isEmpty() ? "是" : "否"));
- int[] keys = new int[] {15, 6, 18, 3, 7, 13, 20, 2, 9, 4};
- for (int key: keys) {
- bst.insert(key);
- }
- System.out.println("查找树是否为空? " + (bst.isEmpty() ? "是" : "否"));
-
- TreeNode minkeyNode = bst.minElemNode(bst.getRoot());
- System.out.println("最小关键字: " + minkeyNode.getKey());
- testNode(bst, minkeyNode);
-
- TreeNode maxKeyNode = bst.maxElemNode(bst.getRoot());
- System.out.println("最大关键字: " + maxKeyNode.getKey());
- testNode(bst, maxKeyNode);
-
- System.out.println("根结点关键字: " + bst.getRoot().getKey());
- testNode(bst, bst.getRoot());
- testTraverse(bst);
-
- System.out.println("****************************** ");
-
- System.out.println("查找 7 : " + (bst.search(7) != null ? "查找成功!" : "查找失败,不存在该关键字!"));
- bst.delete(7);
- System.out.println("查找 7 : " + (bst.search(7) != null ? "查找成功!" : "查找失败,不存在该关键字!"));
- System.out.println("查找 12 : " + (bst.search(12) != null ? "查找成功!" : "查找失败,不存在该关键字!"));
- bst.insert(12);
- System.out.println("查找 12 : " + (bst.search(12) != null ? "查找成功!" : "查找失败,不存在该关键字!"));
-
- testTraverse(bst);
-
- System.out.println("****************************** ");
-
- bst.insert(16);
- bst.delete(6);
- bst.delete(4);
-
- testTraverse(bst);
-
- } catch (Exception e) {
- System.out.println(e.getMessage());
- e.printStackTrace();
- }
- }
-
-
- }
二叉查找树的Java实现,布布扣,bubuko.com
二叉查找树的Java实现
原文:http://www.cnblogs.com/cugwx/p/3664306.html