上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 41 下一页
摘要: 目录二叉搜索树查找元素 - 递归实现查找元素 - 非递归实现获取最小健上的值插入节点获取节点的前驱查找节点的后继节点删除节点范围查询判断否是一个合法的二叉搜索树范围求和前序遍历构造二叉树 二叉搜索树 二叉搜索树/二叉查找树/二叉排序树 特点: 树节点增加key属性,用来比较谁大谁小,key不可以重复 阅读全文
posted @ 2023-12-30 10:42 chuangzhou 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/hiyong/p/16210481.html https://zhuanlan.zhihu.com/p/614018391 阅读全文
posted @ 2023-12-25 10:18 chuangzhou 阅读(10) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/a3464684/article/details/89918403 阅读全文
posted @ 2023-12-19 15:28 chuangzhou 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 目录前中后遍历 - 递归实现前中遍历 - 非递归实现后续遍历 - 非递归实现前中后序遍历一起非递归实现判断一个二叉树是否为对称二叉树 - 递归实现二叉树的最大深度 - 后序遍历求解二叉树的最大深度 - 层序遍历二叉树的最小深度 - 层序遍历翻转二叉树 - 递归实现后缀表达式转换为二叉树根据前序和中序 阅读全文
posted @ 2023-12-17 20:53 chuangzhou 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/664918652 阅读全文
posted @ 2023-12-16 21:03 chuangzhou 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.https://blog.csdn.net/qq_42148348/article/details/133359196 2.https://www.chromegw.com/QA/czsy/1576.html 阅读全文
posted @ 2023-12-15 19:43 chuangzhou 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 使用条件: 输入与输出相同时可代替Lambda 表达式提高阅读性 package com.demo; public class Test2 { public static void main(String[] args) { Student s = new Student("张三", 18, "唱歌 阅读全文
posted @ 2023-12-13 20:54 chuangzhou 阅读(415) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/jack1liu/article/details/122392796 阅读全文
posted @ 2023-12-13 17:44 chuangzhou 阅读(15) 评论(0) 推荐(0) 编辑
摘要: public class Test1 { public static void main(String[] args) { Student s = new Student("张三",18,"唱歌"); Student s1 = new Student("李四",27,"跳舞"); Student s 阅读全文
posted @ 2023-12-09 22:09 chuangzhou 阅读(33) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zzvar/article/details/118388897 https://blog.51cto.com/u_16213562/7607803 阅读全文
posted @ 2023-12-09 22:04 chuangzhou 阅读(1) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 41 下一页