B****S 发帖数: 24 | 1 想只用gate来实现这样一个问题, 在一个二进制数中,对于被0分割成的几个小段的1s
, 如果该小段1s的个数为偶数,那么对应输出为等长的010101...,如果为奇数,那么对
应输出为1010101...,如何只用gate来实现。(最好the time cost does not depend
on the word length)
e.g. 对于0 1 1 1 1 0 1 1 1 1 1 0 1 1 0 0
想要输出 0 0 1 0 1 0 1 0 1 0 1 0 0 1 0 0
这个问题困扰了我好久,希望各位帮助,感激不尽。 | DK 发帖数: 194 | 2 用FSM就好容易。。。不过那样time cost depends on the word length.... |
|