我有以下问题。我的方程式是:
NAND2(NAND4(d,c,-b,a),NAND2(c,-a))
"-"
表示"NOT"
。我不允许使用NAND4
,我只允许使用NAND2
。
我该如何转换这个?
谢谢
发布于 2016-05-30 09:42:20
NAND
一般等同于NOT(AND(…))
AND4(a, b, c, d)
等价于AND2(AND2(a, b), AND2(c, d))
NAND4(a, b, c, d)
等价于NOT(AND4(a, b, c, d))
,而等价于NOT(AND2(AND2(a, b), AND2(c, d)))
NAND2(AND2(a, b), AND2(c, d))
NAND2(NOT(NAND2(a, b)), NOT(NAND2(c, d)))
。https://stackoverflow.com/questions/37522303
复制相似问题