上一页 1 2 3 4 5 6 ··· 21 下一页
摘要: 一、层次化遍历说明 层次化遍历:abcdefghij 二、层次化遍历代码 思想:采用队列先进先出的特性来实现 public static void levelTraversal(TreeNode root) { if (root == null) { return; } Queue<TreeNode 阅读全文
posted @ 2021-09-11 23:36 ibrake 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 一、递归后序遍历 public static void postOrder(TreeNode root) { if (root == null) { return; } postOrder(root.getLeft()); postOrder(root.getRight()); System.out 阅读全文
posted @ 2021-09-11 23:19 ibrake 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 中序遍历:左子树,根节点,右子树。 一、递归中序遍历 public static void inOrder(TreeNode root) { if (root == null) { return; } inOrder(root.getLeft()); System.out.println(root. 阅读全文
posted @ 2021-09-11 23:07 ibrake 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 先序遍历:根节点,左节点,右节点。 一、递归先序遍历 递归方式比较直接明了。 public static void preOrder(TreeNode root) { if (root == null) { return; } System.out.println(root.getValue()); 阅读全文
posted @ 2021-09-11 22:45 ibrake 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 一、数组和二叉树的关系 二叉树可以通过数组来进行存储。https://www.cnblogs.com/Brake/p/15058906.html 数组从0开始,如果父节点在数组中的下标是i,那么其左二子在数组中对应的下标则为2i+1。右儿子子对应的下标为2i+2。 同理,已知某节点在数组中对应的下标 阅读全文
posted @ 2021-09-11 22:34 ibrake 阅读(1643) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/737467/202108/737467-20210822214042895-21909559.png) 阅读全文
posted @ 2021-08-22 21:41 ibrake 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 顺序存储和链式存储 阅读全文
posted @ 2021-07-25 20:37 ibrake 阅读(268) 评论(0) 推荐(0) 编辑
摘要: Code package kb.algorithm; public class SelectionSort { public static void main(String[] args) { int[] a = new int[]{3, 6, 4, 7, 2}; sort(a); StringBu 阅读全文
posted @ 2021-05-18 23:22 ibrake 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 现实中打牌 接收到新牌后在已有的牌里面进行排序,然后找到属于自己的位置进行插入: 手中的牌永远是有序的 Code package kb.algorithm; public class InsertionSort { public static void main(String[] args) { i 阅读全文
posted @ 2021-05-16 14:42 ibrake 阅读(64) 评论(0) 推荐(0) 编辑
摘要: Code package kb.algorithm; public class BubbleSort { public static void main(String[] args) { int[] a = new int[]{3, 6, 4, 9, 1, 7, 2, 5}; sort(a); St 阅读全文
posted @ 2021-05-15 20:56 ibrake 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 21 下一页