上一页 1 2 3 4 5 6 7 8 9 ··· 22 下一页
摘要: 子序列:不需要连续 子串:需要连续,两个不等时,为0 解法: https://www.cnblogs.com/wangkundentisy/p/9346376.html 从最优子结构和重叠子问题的角度考虑最长公共子序列: https://www.cnblogs.com/hapjin/p/557248 阅读全文
posted @ 2019-09-03 00:11 嘿boom 阅读(141) 评论(0) 推荐(0) 编辑
摘要: package 笔试; import java.util.ArrayList; import java.util.List; public class 字符串全排列 { public static void main(String[] args) { char[] str = new char[] {'A','B','C'}; System.out.println(getString(str)); 阅读全文
posted @ 2019-09-03 00:10 嘿boom 阅读(202) 评论(0) 推荐(0) 编辑
摘要: inode的理解: https://www.cnblogs.com/xiexj/p/7214502.html shell: https://www.runoob.com/linux/linux-shell.html 阅读全文
posted @ 2019-09-01 16:18 嘿boom 阅读(144) 评论(0) 推荐(0) 编辑
摘要: https://www.runoob.com/design-pattern/singleton-pattern.html 不理解饿汉式, 即使在静态变量时就赋予了new Singleton() ,但实际上,准备阶段只是赋零值。 没有主动使用就不会初始化,也就不会new Singleton(),,为什 阅读全文
posted @ 2019-08-29 20:53 嘿boom 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 破坏: 阅读全文
posted @ 2019-08-28 20:22 嘿boom 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 静态变量在准备阶段赋默认零值,在初始化阶段赋用户值,静态代码块在初始化阶段执行 本质上,static int a = 2 是要分成两步 static int a; static {a = 2} 也就是说, 准备阶段,静态变量赋予零值 初始化阶段,静态代码块执行(包括对静态变量的赋值) 阅读全文
posted @ 2019-08-25 16:54 嘿boom 阅读(1428) 评论(0) 推荐(0) 编辑
摘要: https://www.hollischuang.com/?s=Java%E5%91%BD%E4%BB%A4%E5%AD%A6%E4%B9%A0%E7%B3%BB%E5%88%97 阅读全文
posted @ 2019-08-20 23:40 嘿boom 阅读(140) 评论(0) 推荐(0) 编辑
摘要: HOW2J的基本操作:http://how2j.cn/k/jdbc/jdbc-mysql/386.html 数据库连接池的理解:https://www.cnblogs.com/zhuleixiao/p/8974982.html 阅读全文
posted @ 2019-08-16 23:24 嘿boom 阅读(105) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/smart-hwt/p/8257330.html 阅读全文
posted @ 2019-08-16 21:31 嘿boom 阅读(100) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/7a5b0043b035 阅读全文
posted @ 2019-08-16 20:51 嘿boom 阅读(89) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 22 下一页