二叉树(java实现)

一、树的术语       ————>>如下图

根:树的根节点。

路径:从一个节点到另一个 节点所经过的“路”(说白了就是两个点的连线)。

父节点、子节点。叶节点:在所有节点中,每两个节点之间都有连线,(除了根外)上个节点就是下个节点的父节点;反过来,下个节点就是上个节点的子节点;而没有子节点的节点就是叶节点。

子树:每个节点都可以成为“子树”的根,它和它所包含之下的节点都可以组成一个子树,如上图F、I、J,F就是根,I、J为子树的叶节点。

访问:当流程到达某个节点时,就可以认为是“访问”了该节点,通常是在此做了某种操作(如显示该节点或查看某个字段等),如果只是通过,不认为是访问。

遍历:遵循某种特定的顺序访问树中所有节点。

层:如上图,根属于0层,依次往下走。

二、以下是二叉树的一个实例(Java实现)

 

package mtest;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Stack;

class Node {
 public int iData;
 public double dData;
 public Node leftChild;
 public Node rightChild;

 public void displayNode() {
  System.out.print("{");
  System.out.print("iData");
  System.out.print(",");
  System.out.print(dData);
  System.out.print("}");
 }
}

class Tree {
 private Node root;

 public Tree() {
  root = null;
 }

 public Node find(int key) {
  Node current = root;
  while (current.iData != key) {
   if (key < current.iData) {
    current = current.leftChild;
   } else {
    current = current.rightChild;
   }
   if (current == null) {
    return null;
   }
  }
  return current;

 }
    //插入一个节点
 public void insert(int id, double dd) {
  Node newNode = new Node();
  newNode.iData = id;
  newNode.dData = dd;
  if (root == null) {
   root = newNode;
  } else {
   Node current = root;
   Node parent;
   while (true) {
    parent = current;
    if (id < current.iData) {
     current = current.leftChild;
     if (current == null) {
      parent.leftChild = newNode;
      return;
     }
    } else {
     current = current.rightChild;
     if (current == null) {
      parent.rightChild = newNode;
      return;
     }
    }
   }
  }
 }
    //删除节点
 public boolean delete(int key) {
  Node current = root;
  Node parent = root;
  boolean isLeftChild = true;
  while (current.iData != key) {
   parent = current;
   if (key < current.iData) {
    isLeftChild = true;
    current = current.leftChild;
   } else {
    isLeftChild = false;
    current = current.rightChild;
   }
   if (current == null) {
    return false;
   }
  }
  if (current.leftChild == null && current.rightChild == null) {
   if (current == root) {
    root = null;
   } else if (isLeftChild) {
    parent.leftChild = null;
   } else {
    parent.rightChild = null;
   }
  } else if (current.rightChild == null) {
   if (current == root) {
    root = current.leftChild;
   } else if (isLeftChild) {
    parent.leftChild = current.leftChild;
   } else {
    parent.rightChild = current.rightChild;
   }
  } else if (current.leftChild == null) {
   if (current == root) {
    root = current.rightChild;
   } else if (isLeftChild) {
    parent.leftChild = current.rightChild;
   } else {
    parent.rightChild = current.rightChild;
   }
  } else {
   Node successor = getSuccessor(current);
   if (current == root) {
    root = successor;
   } else if (isLeftChild) {
    parent.leftChild = successor;
   } else {
    parent.rightChild = successor;
   }
   successor.leftChild = current.leftChild;
  }
  return true;
 }

 private Node getSuccessor(Node delNode) {
  Node successorParent = delNode;
  Node successor = delNode;
  Node current = delNode.rightChild;
  while (current != null) {
   successorParent = successor;
   successor = current;
   current = current.leftChild;
  }
  if (successor != delNode.rightChild) {
   successorParent.leftChild = successor.rightChild;
   successor.rightChild = delNode.rightChild;
  }
  return successor;
 }

 public void traverse(int traverseType) {
  switch (traverseType) {
  case 1:
   System.out.print("\nPreorder traversal:");
   preOrder(root);
   break;
  case 2:
   System.out.print("\nInorder traversal:");
   inOrder(root);
   break;
  case 3:
   System.out.print("\nPostorder traversal:");
   postOrder(root);
   break;
  }
  System.out.println();
 }

 private void preOrder(Node localRoot) {
  if (localRoot != null) {
   System.out.print(localRoot.iData + " ");
   preOrder(localRoot.leftChild);
   preOrder(localRoot.rightChild);
  }
 }
    //遍历树
 private void inOrder(Node localRoot) {
  if (localRoot != null) {
   inOrder(localRoot.leftChild);
   System.out.print(localRoot.iData + " ");
   inOrder(localRoot.rightChild);
  }
 }

 private void postOrder(Node localRoot) {
  if (localRoot != null) {
   postOrder(localRoot.leftChild);
   postOrder(localRoot.rightChild);
   System.out.print(localRoot.iData + " ");
  }
 }

 @SuppressWarnings({ "unchecked", "rawtypes" })
 public void displayTree() {
  Stack globalStack = new Stack();
  globalStack.push(root);
  int nBlacks = 32;
  boolean isRowEmpty = false;
  System.out.println("================================");
  while (isRowEmpty == false) {
   Stack localStack = new Stack();
   isRowEmpty = true;
   for (int j = 0; j < nBlacks; j++) {
    System.out.print(" ");
   }
   while (globalStack.isEmpty() == false) {
    Node temp = (Node) globalStack.pop();
    if (temp != null) {
     System.out.print(temp.iData);
     localStack.push(temp.leftChild);
     localStack.push(temp.rightChild);
     if (temp.leftChild != null || temp.rightChild != null) {
      isRowEmpty = false;
     }
    } else {
     System.out.print("----");
     localStack.push(null);
     localStack.push(null);
    }
    for (int j = 0; j < nBlacks * 2 - 2; j++) {
     System.out.print(' ');
    }
   }
   System.out.println();
   nBlacks /= 2;
   while (localStack.isEmpty() == false) {
    globalStack.push(localStack.pop());
   }
  }
  System.out.println("===============================");
 }
}

public class TreeApp {
 public static void main(String[] args) throws IOException {
  int value;
  Tree theTree = new Tree();
  theTree.insert(50, 1.5);
  theTree.insert(20, 2.5);
  theTree.insert(55, 1.4);
  theTree.insert(34, 5.6);
  theTree.insert(10, 1.1);
  theTree.insert(20, 1.2);
  theTree.insert(30, 1.3);
  theTree.insert(40, 1.4);
  theTree.insert(50, 1.5);
  theTree.insert(60, 1.6);
  theTree.insert(70, 1.7);
  theTree.insert(80, 1.8);
  theTree.insert(90, 1.9);
  theTree.insert(51, 1.0);
  theTree.insert(52, 2.5);
  theTree.insert(53, 3.5);
  theTree.insert(54, 4.5);
  theTree.insert(55, 5.5);
  while (true) {
   System.out.print("Enter first letter of show,");
   System.out.print("insert,find,delete,or traverse:");
   int choice = getChar();
   switch (choice) {
   case 's':
    theTree.displayTree();
    break;
   case 'i':
    System.out.print("Enter value to insert:");
    value = getInt();
    theTree.insert(value, value + 0.9);
    break;
   case 'f':
    System.out.print("Enter value to find:");
    value = getInt();
    Node found = theTree.find(value);
    if (found != null) {
     System.out.print("Found:");
     found.displayNode();
     System.out.print("\n");
    } else {
     System.out.print("Could not find");
    }
    System.out.print(value + "\n");
    break;
   case 'd':
    System.out.print("Enter value to delete:");
    value = getInt();
    boolean didDelete = theTree.delete(value);
    if (didDelete) {
     System.out.print("Deleted" + value + "\n");
    } else {
     System.out.print("Could not delete");
    }
    System.out.print(value + '\n');
    break;
   case 't':
    System.out.print("Enter type 1,2 or 3:");
    value = getInt();
    theTree.traverse(value);
    break;
   default:
    System.out.print("Innalid entry\n");
   }
  }
 }

 public static String getString() throws IOException {
  InputStreamReader isr = new InputStreamReader(System.in);
  BufferedReader br = new BufferedReader(isr);
  String s = br.readLine();
  return s;
 }

 public static char getChar() throws IOException {
     String s = getString();
  return s.charAt(0);
 }

 public static int getInt() throws IOException {
  String s = getString();
  return Integer.parseInt(s);
 }

}

 

平衡二叉树(AVL树)是一种自平衡的二叉搜索树,它的左子树和右子树的高度差不超过1。在Java中,可以通过以下步骤实现平衡二叉树: 1. 定义节点类:首先定义一个节点类,包含节点值、左子节点和右子节点等属性。 ```java class Node { int value; Node left; Node right; public Node(int value) { this.value = value; this.left = null; this.right = null; } } ``` 2. 实现平衡二叉树类:创建一个平衡二叉树类,包含插入节点、删除节点、旋转操作等方法。 ```java class AVLTree { private Node root; // 插入节点 public void insert(int value) { root = insertNode(root, value); } private Node insertNode(Node root, int value) { if (root == null) { return new Node(value); } if (value < root.value) { root.left = insertNode(root.left, value); } else if (value > root.value) { root.right = insertNode(root.right, value); } else { // 如果存在相同值的节点,可以根据需求进行处理 return root; } // 更新节点的高度 root.height = 1 + Math.max(getHeight(root.left), getHeight(root.right)); // 平衡操作 int balance = getBalance(root); // 左左情况,进行右旋操作 if (balance > 1 && value < root.left.value) { return rightRotate(root); } // 右右情况,进行左旋操作 if (balance < -1 && value > root.right.value) { return leftRotate(root); } // 左右情况,先左旋再右旋 if (balance > 1 && value > root.left.value) { root.left = leftRotate(root.left); return rightRotate(root); } // 右左情况,先右旋再左旋 if (balance < -1 && value < root.right.value) { root.right = rightRotate(root.right); return leftRotate(root); } return root; } // 删除节点 public void delete(int value) { root = deleteNode(root, value); } private Node deleteNode(Node root, int value) { // 空树或未找到节点 if (root == null) { return root; } if (value < root.value) { root.left = deleteNode(root.left, value); } else if (value > root.value) { root.right = deleteNode(root.right, value); } else { // 找到要删除的节点 // 节点只有一个子节点或无子节点 if (root.left == null || root.right == null) { Node temp = null; if (temp == root.left) { temp = root.right; } else { temp = root.left; } // 无子节点的情况 if (temp == null) { temp = root; root = null; } else { // 一个子节点的情况 root = temp; } } else { // 节点有两个子节点,找到右子树中最小的节点 Node temp = minValueNode(root.right); // 将右子树中最小节点的值赋给要删除的节点 root.value = temp.value; // 删除右子树中最小的节点 root.right = deleteNode(root.right, temp.value); } } // 更新节点的高度 root.height = 1 + Math.max(getHeight(root.left), getHeight(root.right)); // 平衡操作 int balance = getBalance(root); // 左左情况,进行右旋操作 if (balance > 1 && getBalance(root.left) >= 0) { return rightRotate(root); } // 左右情况,先左旋再右旋 if (balance > 1 && getBalance(root.left) < 0) { root.left = leftRotate(root.left); return rightRotate(root); } // 右右情况,进行左旋操作 if (balance < -1 && getBalance(root.right) <= 0) { return leftRotate(root); } // 右左情况,先右旋再左旋 if (balance < -1 && getBalance(root.right) > 0) { root.right = rightRotate(root.right); return leftRotate(root); } return root; } // 获取节点的高度 private int getHeight(Node node) { if (node == null) { return 0; } return node.height; } // 获取节点的平衡因子 private int getBalance(Node node) { if (node == null) { return 0; } return getHeight(node.left) - getHeight(node.right); } // 右旋操作 private Node rightRotate(Node y) { Node x = y.left; Node T2 = x.right; x.right = y; y.left = T2; y.height = Math.max(getHeight(y.left), getHeight(y.right)) + 1; x.height = Math.max(getHeight(x.left), getHeight(x.right)) + 1; return x; } // 左旋操作 private Node leftRotate(Node x) { Node y = x.right; Node T2 = y.left; y.left = x; x.right = T2; x.height = Math.max(getHeight(x.left), getHeight(x.right)) + 1; y.height = Math.max(getHeight(y.left), getHeight(y.right)) + 1; return y; } // 获取最小值节点 private Node minValueNode(Node node) { Node current = node; while (current.left != null) { current = current.left; } return current; } } ``` 以上是一个简单的平衡二叉树Java实现,包括插入节点、删除节点、旋转操作等方法。你可以根据需要进行调整和扩展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值