【SICP练习】145 练习4.1

练习4-1原文

Exercise 4.1. Notice that we cannot tell whether the metacircular evaluator evaluates operands from left to right or from right to left. Its evaluation order is inherited from the underlying Lisp: If the arguments to cons in list-of-values are evaluated from left to right, then list-of-values will evaluate operands from left to right; and if the arguments to cons are evaluated from right to left, then list-ofvalues will evaluate operands from right to left.Write a version of list-of-values that evaluates operands from left to right regardless of the order of evaluation in the underlying Lisp. Also write a version of list-of-values that evaluates operands from right to left.

分析

如题中所说的,list-of-values的求值顺序由cons的参数而定。同时也要使用no-operands?来判断exps,,如果为真则返回空。而左右之分,在let中的求值顺序可以决定。如果是从左到右就应该是先求值first而后求值rest,最后用cons来构造到一起即可。

代码 (no-operands? exps)’ exps) env)))exps env)(if (no-operands? exps)’ exps) env)))(cons first rest)))))

一个人身边的位置只有这么多,

【SICP练习】145 练习4.1

相关文章:

你感兴趣的文章:

标签云: