这是我对深度程序的了解,但是如何在没有 max 函数的情况下执行此操作(仅使用 define、lambda、quote (')、car、cdr、cons、cond、eq? 和 equal?)?
(define depth
(lambda (expr)
(cond ((null? expr) 0)
((list? (car expr))
(max (+ 1 (depth (car expr))) (depth (cdr expr))))
((null? (cdr expr))0) (max (depth (cdr expr))))))
输入: ((id = id + id)(if bool then (if bool then (id = id + id))(id = const / const)(id = id + id))(while bool (id = id - const )(id = id - id)))
应该输出:最大深度:2