
abbr. 上下文无关文法;控制流图control flow graph
Since a procedure in a high-level language has a single entry and a single exit point, it is common for a CFG to have a unique entry and exit node as well.
因为在高级语言中一个过程有一个单一入口点和一个单一出口点,所以一个CFG通常也有唯一的入口结点和出口结点。
The improvement toward construction technology of CFG pile has prolonged its effective working time in low temperature environment which ensures the pile quality.
通过对CFG桩施工工艺的改进,延长其在低温环境下施工的有效作业时间,保证了成桩质量。
The CFG generation process can also be attacked by obfuscating the assembly code such that one cannot determine the correct target of a jump instruction, such as using a jump through register.
攻击CFG生成进程也可以是通过混淆汇编代码以致它不能够正确地确定跳转指令的目标,比如使用寄存器指示跳转目标。
The CFG pile is the ground reinforcement one method, at present uses the vibration settling tube filling pile law and the long spiral core tube pump over blend pours into the pile two methods.
CFG桩属地基加固的建筑工程项目管理论文一种方法,目前采用振动沉管灌注桩法和长螺旋芯管泵送混合料灌注成桩两种方法。
The 25 test data of the composite foundations of CFG piles collected from all over the country are processed statistically according to reliability theory.
利用可靠度理论对从国内收集到的25组CFG桩复合地基承载力试验数据进行了概率统计处理。
CFG 在计算机科学领域最常见的意思是上下文无关文法。它是一种形式文法,用于描述形式语言(特别是编程语言)的结构。
T
表示。N
表示。起始符号 S
是一个特殊的非终结符。A -> α
,其中 A
是一个非终结符,α
是由终结符和/或非终结符组成的字符串(可以是空串)。S
。所有合法的字符串都从 S
开始推导而来。考虑一个描述简单算术表达式的 CFG:
+
, *
, (
, )
, id
(代表标识符/变量名)E
(表达式,起始符号), T
(项), F
(因子)E -> E + T
E -> T
T -> T * F
T -> F
F -> ( E )
F -> id
这个文法可以生成像 id + id * id
或 (id + id) * id
这样的算术表达式字符串。
上下文无关文法 (CFG) 是计算机科学中用于精确定义形式语言(特别是编程语言)语法结构的数学模型。它通过一组终结符、非终结符、产生式规则和一个起始符号,规定了如何从起始符号出发,通过应用规则替换非终结符,最终生成该语言的所有合法字符串。它是编译器设计和语法分析的核心理论基础。
来源参考:
CFG是常见的英文缩写,在不同领域有不同含义,以下是主要解释:
计算机科学领域
软件与游戏应用
工业自动化
其他领域
提示:CFG的具体含义需结合上下文判断。计算机科学和软件领域的使用最为广泛,其他领域多为特定场景下的专业术语。如需深入某个领域的定义,可参考对应专业资料或来源链接。
【别人正在浏览】