摘要: 单数和复数: 单数: 1. 数字 (可以对其实行加减法,内部总是按双浮点去保存所有点数字的) 2. 字符串(可以进行字符串连接, 与C++不同, NULL 没有特殊的含义,就是单纯的NULL字符串) `battery` (不允许转译) “battery” (允许转译) 2.1 双引号内的特殊含义 2 阅读全文
posted @ 2020-12-11 14:48 John_K 阅读(56) 评论(0) 推荐(0) 编辑
摘要: Metris: bay area, san diego, texas [apple]CAD Engineer – Timing for Transistor-Level Flows & Methodologies Do you love creating elegant solutions to h 阅读全文
posted @ 2020-12-07 03:37 John_K 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 一般大家也可以选择自己开设一个个人养老账户,称为IRA(Individual retirement account )个人退休账户,一般来说有任何收入的个人都可以开设IRA账户。 401K及IRA账户一般有4种选择: 1. 传统型(Pre-Tax):帐号资金预先存入,日后提取时再进行交税。 传统型4 阅读全文
posted @ 2020-11-21 14:30 John_K 阅读(253) 评论(0) 推荐(0) 编辑
摘要: this page is left for recording what I have done, and planning to do, and some summarys. 阅读全文
posted @ 2020-11-14 14:42 John_K 阅读(78) 评论(0) 推荐(0) 编辑
摘要: (use the exp to match the string, it it matches, put it to sting), if it matches, it returns 1, if not matches, it returns 0. options: -indices: retur 阅读全文
posted @ 2020-11-14 14:05 John_K 阅读(170) 评论(0) 推荐(0) 编辑
摘要: (matches one "e" or multiple "e") (matches one "e" and matches ea if there are any, so a is optional) (matches 'a' 0 or more, so it matches e, ea, eaa 阅读全文
posted @ 2020-11-13 14:53 John_K 阅读(75) 评论(0) 推荐(0) 编辑
摘要: Tail Recursion Why space complexity is less in case of loop ? Before explaining this I am assuming that you are familiar with the knowledge that’s how 阅读全文
posted @ 2020-11-12 08:04 John_K 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 分析下面的requ : 1. 用hashtable 2. 用vector 或者list都可以 3. 第三点只可以用List做 所以在第一层我们需要一个hashtable,去存key, 然后key里面去存指针; 第二层的双向链表支持o(1)复杂度的插入,删除和移入操作。 阅读全文
posted @ 2020-06-25 15:05 John_K 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 给定一个闭区间,在处理的时候我们可以处理成闭区间或者单区间; 从下面的例子可以看出二种写法都找到了l = 25 ; 但是r的值不一样(这个也没有什么用) 以下写法的核心在于我们 在程序运行的中心返回L; 做题时要考虑到可能溢出,假设x是正数的话,我们可以用unsigned防止溢出 阅读全文
posted @ 2020-06-24 14:18 John_K 阅读(122) 评论(0) 推荐(0) 编辑
摘要: An operator is a symbol that tells the complier to perform specifc mathematical or logical manipulations. C++ allows u to specify more than one defini 阅读全文
posted @ 2020-06-14 08:47 John_K 阅读(174) 评论(0) 推荐(0) 编辑