摘要:
tools https://dbconvert.com/db2/mysql/ https://www.ispirer.com/products/migrate-db2-as-400-to-mysql (spirer MnMTK 自动完成数据库对象从 DB2 iSeries 到 MySQL的整个迁移。 阅读全文
摘要:
占位符 #{} 1.#{} #{id} id为参数可以是任意类型 点击查看代码 <mapper namespace="com.itpsc.mapper.EmpMapper" > <select id="queryById" parameterType="int" resultType="com.it 阅读全文
摘要:
tips:简述和 equals 的区别> 1)对于,如果作用于基本数据类型的变量,则直接比较其存储的 “值”是否相等;如果作用于引用类型的变量,则比较的是所指向的对象的地址! 2)对于equals方法,注意:equals方法不能作用于基本数据类型的变量。如果没有对equals方法进行重写,则比较的是 阅读全文
摘要:
convex hull divide and conquer paradigm. theoretical tractable a factor of within 10% cryptography. theme a cubic algorithm. from a standpoint of algo 阅读全文
摘要:
因为以后的很多有关数组的面试题都离不开增删改查,所以基本的逻辑语句是要会的比如插入的时候 first to create a new space for inserting element. then shift all elments one index from that index to th 阅读全文
摘要:
clarifying questions negtive integers positive integers add up to 16 in theory recursion tree is equivalent to the number of sort of (somewhat) leftmo 阅读全文
摘要:
Array https://leetcode.com/explore/featured/card/fun-with-arrays/521/introduction/3295/ snippet= piece of simplicity variant Accessing Elements in Arr 阅读全文
摘要:
自底向上的单元测试 方法 先对最底层的基本单元进行测试,模拟调用该单元的单元做驱动模块。然后再对上面一层进行测试,用下面已被测试过的单元做桩模块。依此类推,直到测试完所有单元。 优点 在集成测试前提供系统早期的集成途径。不需要开发桩模块。 缺点 随着测试的进行,测试过程越来越复杂。 总结 比较合理的 阅读全文
摘要:
目描述 给定 a、b 两个文件,各存放 50 亿个 URL,每个 URL 各占 64B,内存限制是 4G。请找出 a、b 两个文件共同的 URL。 解答思路 每个 URL 占 64B,那么 50 亿个 URL占用的空间大小约为 320GB。 5, 000, 000, 000 * 64B ≈ 5GB 阅读全文
摘要:
1.在一个无序数组中找到中位数: https://blog.csdn.net/zdl1016/article/details/4676882 2.正则化的作用: https://blog.csdn.net/u014038273/article/details/79967790 3.resnet 的结 阅读全文