java数据结构(二叉树)

Posted Tippy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java数据结构(二叉树)相关的知识,希望对你有一定的参考价值。

Node节点:

 1 public class Node {
 2 public long data;
 3 public String sData;
 4 public Node leftChild;
 5 public Node rightChild;
 6 public Node(long data,String sData) {
 7 this.data = data;
 8 this.sData = sData;
 9 }
10 }

Tree:

 1 public class Tree {
 2     public Node root;
 3     
 4     public void insert(long value,String sValue){
 5         Node newNode = new Node(value,sValue);
 6         Node current = root;
 7         Node parent;
 8         if(root == null){
 9             root = newNode;
10             return;
11         }else{
12             while(true){
13                 parent = current;
14                 if(current.data > value){
15                     current = current.leftChild;
16                     if(current == null){
17                         parent.leftChild = newNode;
18                         return ;
19                     }
20                 }else{
21                     current = current.rightChild;
22                     if(current == null){
23                         parent.rightChild = newNode;
24                         return;
25                     }
26                 }
27             }
28         }
29     }
30     
31     public Node find(long value){
32         Node current = root;
33         while(current.data != value){
34             if(current.data >  value){
35                 current = current.leftChild;
36             }else{
37                 current = current.rightChild;
38             }
39             if(current == null){
40                 return null;
41             }
42         }
43         return current;
44     }
45 }

 

以上是关于java数据结构(二叉树)的主要内容,如果未能解决你的问题,请参考以下文章

剑指 Offer 07. 重建二叉树(java解题)

[DataStructure]哈希表二叉树及多叉树 Java 代码实现

输出二叉树树形的数据结构程序代码怎么写

数据结构--数组存储二叉树(Java)

java实现二叉树的构建以及3种遍历方法(转)

java实现二叉树的构建以及3种遍历方法