我正在阅读我得到的 AI 教科书,我已经来到了我的部分的最后一个作业问题:
“以您选择的任何语言实施第 69 页概述的统一算法。”
在第 69 页,您有以下统一算法的伪代码:
function unify(E1, E2);
begin
case
both E1 and E2 are constants or the empty list:
if E1 = E2 then return {}
else return FAIL;
E1 is a variable:
if E1 occurs in E2 then return FAIL
else return {E2/E1}
E2 is a variable
if E2 occurs in E1 then FAIL
else return {E1/E2}
either E1 or E2 are empty then return FAIL
otherwise:
begin
HE1 := first element of E1;
HE2 := first element of E2;
SUBS1 := unify(HE1, HE2);
if SUBS1 := FAIL then return FAIL;
TE1 := apply(SUBS1, rest of E1);
TE2 := apply(SUBS1, rest of E2);
SUBS2 := unify(TE1, TE2);
if SUBS2 = FAIL then return FAIL;
else return composition(SUBS1, SUBS2)
end
end
end
现在,我了解了统一的一般概念,但我完全不知道如何开始用 Java 或 C# 之类的语言来实现它。
我什至不确定方法签名会是什么样子。它需要什么类型的变量?我相当确定我需要返回列表来表示谓词演算结构,但这是一个猜测。
例如,当它说“E1 是一个变量”时,如果我将它传递给 Unify 方法,它怎么可能不是呢?我可以检查 null 但这会与“空列表”不同吗?
谁能帮助我或指出正确的方向以在 C# 或 Java 中实现 Unificaiton 算法?