我刚刚编写了函数 add-registers 用于 Racket 中两个 n 位寄存器的二进制加法(使用 bit-add 函数作为助手):
(define (bit-add x y c)
(values (bitwise-xor x y c) (bitwise-ior (bitwise-and x y)
(bitwise-and x c)
(bitwise-and y c))))
(define (add-registers xs ys)
(let ([carry 0])
(values (reverse (for/list ([b1 (reverse xs)] [b2 (reverse ys)])
(let-values ([(nb nc) (bit-add b1 b2 carry)])
(set! carry nc)
nb)))
carry)))
但是我发现我的代码很丑。所以我想知道这是否可以写得更简洁优雅?