树结构及前中后续遍历
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() + " " ); } } |
缘于生活,而归于工作。本人所书,而意于分享。
如有转载,请注明出处!
--活出自己范儿
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律