11 2017 档案

摘要:(a) an if-then-else (b) a while loop (c) a natural loop with two exits, e.g. while with an if...break in the middle; non-structured but reducible (d) an irreducible CFG: a loop with two entry points,... 阅读全文
posted @ 2017-11-28 17:14 max_xbw 阅读(865) 评论(0) 推荐(0)
摘要:抽象语法树:AbstractSyntaxTrees 定义(wiki): 在计算机科学中,抽象语法树(abstract syntax tree或者缩写为AST),或者语法树(syntax tree),是源代码的抽象语法结构的树状表现形式,这里特指编程语言的源代码。树上的每个节点都表示源代码中的一种结构 阅读全文
posted @ 2017-11-28 13:13 max_xbw 阅读(841) 评论(0) 推荐(0)
摘要:Regarding correctness, programmers routinely use testing to gain confidence that their programs works as intended, but as famously stated by Dijkstra: 阅读全文
posted @ 2017-11-27 11:04 max_xbw 阅读(437) 评论(0) 推荐(0)