摘要: this is java hierarchy framework of collection: it cantains interface and class 阅读全文
posted @ 2022-06-30 22:29 奋斗中的菲比 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 二分法 二分法的模版需要牢牢记:二分法是利用的decrease and conquer is different with divide and conquer 在有序的数组中寻找一个跟target value有关的index或value 比如: less than target 的最大index 阅读全文
posted @ 2022-06-30 22:20 奋斗中的菲比 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 二叉树:递归 平衡二叉树 (左右subtree的height的gap要<=1) BST (Binary Search Tree) in-order 左 根 右的时候为一个ascending的数组。 满二叉树 FullBinaryTree : either 0 nodes or 2 nodes per 阅读全文
posted @ 2022-06-30 19:16 奋斗中的菲比 阅读(28) 评论(0) 推荐(0) 编辑