- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的一个长期项目是完成 SICP 的所有练习。我注意到最近的练习有些奇怪。我正在测试霍夫曼编码树。当我在 DrScheme 中执行以下代码时,我得到了预期的结果:
(a d a b b c a)
但是,如果我通过调用 (load "2.67.scm") 或运行 mzscheme -f 2.67.scm 在 mzscheme 中执行相同的代码,它会报告:
symbols: expected symbols as arguments, given: (leaf D 1)
我的问题是:为什么?是不是因为mzscheme和drscheme使用不同的规则加载程序定义?程序代码如下。
;; Define an encoding tree and a sample message
;; Use the decode procedure to decode the message, and give the result.
(define (make-leaf symbol weight)
(list 'leaf symbol weight))
(define (leaf? object)
(eq? (car object) 'leaf))
(define (symbol-leaf x) (cadr x))
(define (weight-leaf x) (caddr x))
(define (make-code-tree left right)
(list left
right
(append (symbols left) (symbols right))
(+ (weight left) (weight right))))
(define (left-branch tree) (car tree))
(define (right-branch tree) (cadr tree))
(define (symbols tree)
(if (leaf? tree)
(list (symbol-leaf tree))
(caddr tree)))
(define (weight tree)
(if (leaf? tree)
(weight-leaf tree)
(cadddr tree)))
(define (decode bits tree)
(define (decode-1 bits current-branch)
(if (null? bits)
'()
(let ((next-branch
(choose-branch (car bits) current-branch)))
(if (leaf? next-branch)
(cons (symbol-leaf next-branch)
(decode-1 (cdr bits) tree))
(decode-1 (cdr bits) next-branch)))))
(decode-1 bits tree))
(define (choose-branch bit branch)
(cond ((= bit 0) (left-branch branch))
((= bit 1) (right-branch branch))
(else (error "bad bit -- CHOOSE-BRANCH" bit))))
(define (test s-exp)
(display s-exp)
(newline))
(define sample-tree
(make-code-tree (make-leaf 'A 4)
(make-code-tree
(make-leaf 'B 2)
(make-code-tree (make-leaf 'D 1)
(make-leaf 'C 1)))))
(define sample-message '(0 1 1 0 0 1 0 1 0 1 1 1 0))
(test (decode sample-message sample-tree))
最佳答案
默认情况下,MzScheme 以存在 symbols
的现有定义的模式启动,并且内联它知道的函数——所以当它编译你的 make-code-tree 时
定义,它使用它知道的绑定(bind)。当它稍后编译您的 symbols
时,它不会对先前的定义产生影响。
处理此问题的最简单方法是将您的代码添加到模块中,方法是在其前面加上#lang scheme
。
关于scheme - DrScheme 与 mzscheme : treatment of definitions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/391272/
我正在使用 DrScheme 编写一个 Scheme 解释器。我定义了一个读取评估打印循环,并且我正在重新定义评估过程。这在 Chez Scheme 等其他方案实现中运行良好,但我不喜欢 Chez S
当我尝试在 DrScheme 上运行 define-type 时,我收到错误“在其定义之前引用标识符:define-type”。为什么会这样? 我输入: (define-type GUI [l
我正在使用 DrScheme 来处理 SICP,并且我注意到某些程序(例如,square)会被反复使用。我想把它们放在一个单独的文件中,这样我就可以将它们包含在其他程序中,而不必每次都重写它们,但我似
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我最近下载了 PLT Scheme 和 DrScheme。当我打开 DrScheme 时,我被告知选择一种语言。但是,我对我的任何选项都不熟悉,帮助指南也没有真正分解它来帮助我轻松选择哪个选项。 那么
我一直在 DrScheme 4.2 中使用 SICP 模块,但在 DrScheme 中哪种语言对 SICP 的支持最好? 这里有人试过this ? 谢谢。 最佳答案 我认为你不需要任何东西,但 R5R
当给定参数是两个项目和一个列表时,如何在 DrScheme 中将列表中的一个项目替换为另一个项目? 最佳答案 将 map 与函数结合使用,当参数等于要替换的项目时返回替换项目,否则返回替换项目。 关于
我的一个长期项目是完成 SICP 的所有练习。我注意到最近的练习有些奇怪。我正在测试霍夫曼编码树。当我在 DrScheme 中执行以下代码时,我得到了预期的结果: (a d a b b c a) 但是
对于那些没有使用过 DrScheme 的人来说,窗口分为两部分:一部分是您正在编辑的文件,另一部分是交互式 shell。当我运行一个文件时,它被加载到交互式环境中,因此我可以调用我定义的函数等。交互式
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
或者创建 GUI 需要做的基本工作。我知道基本组件的 GUI,但从哪里开始。我只是一个自学的人,我正在阅读书末的“How to Design Program”(HtDP),作者建议要成为一名程序员,需
在 SICP 练习 2.26 中,给出了此方案代码: (define x (list 1 2 3)) (define y (list 4 5 6)) 然后给出这个 cons 调用: (cons x y
我是一名优秀的程序员,十分优秀!