摘要: https://blog.csdn.net/qq_36332660/article/details/131024361 [1] cd 项目目录 [2] git init [3] git add . [4] git commit -m [5] git remote add origin "path" 阅读全文
posted @ 2023-11-07 10:30 叶漾知 阅读(4) 评论(0) 推荐(0)
摘要: 【1】进入到项目的文件夹中; 【2】git init ; 【3】git add . 【4】git commit -m'basic JDBC+CRUD' 【5】git remote add origin https://github.com/HanChun/Practice_Basic_CRUD-JD 阅读全文
posted @ 2023-07-01 21:15 叶漾知 阅读(18) 评论(0) 推荐(0)
摘要: 候选码的求解 步骤: 【1】分类:1_ L类 (left) : 仅仅出现在 “——》”左侧的属性; 2_ R类(right):仅仅出现在 “——》"右侧的属性; 3_ LR类(L-R): 即出现在左侧,右出现在右侧 的属性; 4_ N类: 即不属于L, 又不属于 R, 又不属于LR 【2】 定论: 阅读全文
posted @ 2023-05-07 23:45 叶漾知 阅读(145) 评论(0) 推荐(0)
摘要: 【1】哈希函数 https://juejin.cn/post/7118218895860695054 【2】布隆过滤器 https://zhuanlan.zhihu.com/p/472935179 https://zhuanlan.zhihu.com/p/472935179 阅读全文
posted @ 2023-05-03 20:42 叶漾知 阅读(20) 评论(0) 推荐(0)
摘要: 【1】A * 搜索算法: https://www.gamedev.net/reference/articles/article2003.asp e.g. 让游戏中的一个元素 从 源头位置 到达 目的位置; 方法: 广度优先BFS;深度优先DFS; Dijkstra; Floyd ; Jump Poi 阅读全文
posted @ 2023-03-09 03:11 叶漾知 阅读(26) 评论(0) 推荐(0)
摘要: [1] 线程的中断 https://baijiahao.baidu.com/s?id=1612549038792622885&wfr=spider&for=pc 所谓线程中断,其实就是终止一个线程。在使用 Java 线程时,除了线程自行正常结束,很多时候也需要提前结束一个线程的执行过程。Thread 阅读全文
posted @ 2023-02-27 15:17 叶漾知 阅读(13) 评论(0) 推荐(0)
摘要: 【1】 二叉树的一些性质 https://www.jianshu.com/p/bce7efe8d45e 【2】 等比数列求和公式 2^0 + 2^1 + 2^2 + 2^3 +...+ 2^n = 2^(n+1) - 1 ; 【3】 36节有序表 https://www.mashibing.com/ 阅读全文
posted @ 2023-02-21 21:56 叶漾知 阅读(27) 评论(0) 推荐(0)
摘要: [1] 二叉树 基本概念(三种遍历)+不用递归模式的遍历:4种 + 层次遍历法(用queue来帮助实现) [2] queue :https://www.weixueyuan.net/a/hbkjae.html [3] hashMap https://blog.csdn.net/shi_xianshe 阅读全文
posted @ 2023-02-20 18:04 叶漾知 阅读(18) 评论(0) 推荐(0)
摘要: [1] 异或运算; [2]左程云 的 class1听完; [3] 三种sort的代码; InsertionSort; bubbleSort; selectionSort; [4] 对数器 自己测 自己写的算法结果对不对 阅读全文
posted @ 2023-02-15 18:02 叶漾知 阅读(15) 评论(0) 推荐(0)
摘要: [1] 添加一条记录 表单; 完成 [2] 减少一条记录 》成功 删除完成,记得 表单重新load!!! ContextMenu 是属于某个 控制组件的; ContextMenu 里面可以包含 多个 MenuItem;每个MenuItem 键上需要加 text,onAction, id; Conte 阅读全文
posted @ 2023-02-13 16:43 叶漾知 阅读(16) 评论(0) 推荐(0)