3
我剛寫的函數添加寄存器爲二進制加法的球拍兩個n位寄存器(使用位添加功能作爲輔助):二進制加法的優雅代碼?
(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)))
但是我發現我的代碼很醜陋。所以我想知道這是否可以寫得更加簡潔和優雅?