【笔记记录】2020-03-29

【英语】
1. cemented into the reader's mind in the beginning of each chapter.
2. The idea is to start each chapter with an intuitive concrete example that practically shows how the math works using interactive illustrations.
3. novel & innovative:in a very novel and innovative way。
4.threshold:a certain threshold.

【安卓】
1. StringBuilder:非线程安全
2. StringBuffer:线程安全
3. StringBuilder 效率大于 StringBuffer 大于 String.concat() 大于 +

4. 二叉树:序号、编码、权值、顺序存储结构、链式存储结构、遍历(中根遍历、先根遍历、后根遍历、层次遍历)

5.  二叉树的性质:

1. 深度为k的二叉树最多有 2 ^ (k + 1) - 1 个结点(k >= 0),联系数列求和公式即可。

2. 二叉树第 i 层上的结点数最多为 2 ^ i,(i >= 0),联系数列即可。

【数学】

1. 等差数列:二进制等差数列数列表,记住比较重要的位置。

2. 对数函数:以10为底N的对数,即 10 ^ x = N,求 x

3. 矩阵操作:加法、减法、乘法、置换

扫描二维码关注公众号,回复: 10275936 查看本文章

【其他】

1. 前端:tabel-cell 默认被 table 包裹,高度设置 100% 没有用,因为默认的 table 高度 auto

2. PHP:匿名内部类,不能访问外部类成员,只能通过继承或者构造传入,同一处生成的匿名类是同一种类型。

3. Python:模块的概念,import 一个模块会从缓存中拿,from xxx import xxx 与 import 的不同要区分清楚。

猜你喜欢

转载自www.cnblogs.com/nicojerry/p/12591280.html