摘要:
Theorem 1.1 (Helly, Hahn–Banach analytic form). Let p : E → R be a function satisfying (1) p(λx)=λp(x) ∀x∈E and ∀λ>0, (2) p(x+y)≤p(x)+p(y) ∀x,y∈E. Let 阅读全文
摘要:
最近在读Modern Complier Implementatnion in C. 做到语法分析(syntax analysis)时,发现不知道如何写注释的正则表达式: 以下的正则表达式: "/*"[.|\n]"*/" 会根据最长匹配原则,将两行注释间的代码当作注释: /*comments*/ va 阅读全文
摘要:
innodb官方文档中说: A record lock is a lock on an index record. For example, SELECT c1 FROM t WHERE c1 = 10 FOR UPDATE; prevents any other transaction from 阅读全文