树结构及前中后续遍历

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
public class Tree {
    public static void main(String[] args) {
        Tree root = new Tree(50);
        Tree.insert(root, 30);
        Tree.insert(root, 60);
        Tree.insert(root, 70);
        Tree.insert(root, 100);
        Tree.insert(root, 80);
        Tree.VLR(root);
        System.out.println();
        Tree.LDR(root);
        System.out.println();
        Tree.LRD(root);
    }
     
     
    /**数元素*/
    int item;
    /**左节点*/
    Tree left;
    /**右节点*/
    Tree right;
 
    /**构造函数*/
    public Tree(int e) {
        this.item = e;
        this.left = null;
        this.right = null;
    }
 
    /**获取元素*/
    public int getItem() {
        return item;
    }
 
    /**插入元素*/
    public static void insert(Tree root, int value) {
        if(root.item < value) {
            if (root.right == null) {
                root.right = new Tree(value);
            } else {
                insert(root.right, value);
            }
        } else {
            if (root.left == null) {
                root.left = new Tree(value);
            } else {
                insert(root.left, value);
            }
        }
    }
 
    /**前序排序-VLR*/
    public static void VLR(Tree root) {
        print(root);
        if (root.left != null) {
            VLR(root.left);
        }
        if (root.right != null) {
            VLR(root.right);
        }
    }
   /**中序排序-LDR*/
   public static void LDR(Tree root) {
       if (root.left != null) {
           LDR(root.left);
       }
       print(root);
       if (root.right != null) {
           LDR(root.right);
       }
   }
 
   /**后序排序-LRD*/
   public static void LRD(Tree root) {
       if (root.left != null) {
           LRD(root.left);
       }
       if (root.right != null) {
           LRD(root.right);
       }
       print(root);
   }
 
    /**打印*/
    private static void print(Tree root) {
        System.out.print(root.getItem() + " ");
    }
 
}

  

posted @   活出自己范儿  Views(2)  Comments(0Edit  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示