我正在尝试缩放列表中的所有值,其中最大值为 1,最小值为 0。这是我要完成的示例
(check-expect (squash (list 100 90 70 20)) (list 1 0.875 0.625 0)).
如您所见,最大值为 100,因此它的缩放值为 1,最小值 20 被缩小为 0。
为了缩小所有这些值,我正在执行计算 Z=(Li - (smallest-val)) / ((largest-val) - (smallest-val))
其中 Li 是列表中的所有值 (L1, L2, L3 ...)
到目前为止,这是我的代码
(define (squash L)
(local
[
;;(largest-val M) returns the largest value M in L
;;(largest-val: (listof Num) -> Num
(define (largest-val M) (foldr max (first M) (rest M)))
;;(smallest-val x) returns the smallest value x in L
;;(smallest-val: (listof Num) -> Num
(define (smallest-val x) (foldr min (first x) (rest x)))
]
(cond
[(empty? L)'()]
[else (cons (/ (- (first L) smallest-val) (- largest-val smallest-val))
(squash (rest L)))])))
这是我得到的错误
:: -: 期望一个数字作为第二个参数,给定 (lambda (a1) ...)
我不确定如何修复此代码,以便我的程序正常工作
我想使用命令式编程范例来保留我的解决方案,因此我更愿意将我的答案保持与现在相同的格式。