在Python中反转XOR和按位运算

时间:2014-10-21 07:54:43

标签: python bitwise-operators xor

我尝试了很多搜索,但我无法找到解决XOR和Bitwise操作相结合的解决方案。

num[i] = num[i]^( num[i] >> 1 );

如何使用Python反转此操作。我试过这里解释的XOR概念: What is inverse function to XOR?

仍然无法解决数学问题。

2 个答案:

答案 0 :(得分:5)

那是Gray code。在Hackers'Delight中还有一章介绍它。维基百科文章中有一些代码,但为了避免仅链接答案,以下是构建逆的方法:
x ^= x >> (1 << i)执行i = 0 .. ceil(log_2(bits)) - 1

因此对于32位整数,

x ^= x >> 1;
x ^= x >> 2;
x ^= x >> 4;
x ^= x >> 8;
x ^= x >> 16;

对于n位整数:(未经过全面测试,但到目前为止似乎有效)

def gray2binary(x):
    shiftamount = 1;
    while x >> shiftamount:
        x ^= x >> shiftamount
        shiftamount <<= 1
    return x

答案 1 :(得分:3)

要获得更快的转化版本,请参阅@harold's answer


让我们考虑2位数字:

00 = 00 ^ 00 (0 -> 0)
01 = 01 ^ 00 (1 -> 1)
11 = 10 ^ 01 (2 -> 3)
10 = 11 ^ 01 (3 -> 2)

如果y[i]是第i位(小端),则来自y = x ^ (x >> 1)

y[1]y[0] = x[1]x[0] ^ 0x[1] # note: y[1]y[0] means `(y[1] << 1) | y[0]` here

这意味着:

y[1] = x[1] ^ 0
y[0] = x[0] ^ x[1]

如果我们知道y,那么就获得x

 y[i] = (y & ( 1 << i )) >> i
 x[1] = y[1] ^ 0
 x[0] = y[0] ^ x[1] = y[0] ^ (y[1] ^ 0)
 x = (x[1] << 1) | x[0]

您可以将其概括为n - 位数:

def getbit(x, i):
    return (x >> i) & 1

def y2x(y):
    assert y >= 0    
    xbits = [0] * (y.bit_length() + 1)
    for i in range(len(xbits) - 2, -1, -1):
        xbits[i] = getbit(y, i) ^ xbits[i + 1] 

    x = 0
    for i, bit in enumerate(xbits):
        x |= (bit << i) 
    return x

y2x()可以简化为使用没有位数组的数字:

def y2x(y):
    assert y >= 0    
    x = 0
    for i in range(y.bit_length() - 1, -1, -1):
        if getbit(y, i) ^ getbit(x, i + 1):
            x |= (1 << i) # set i-th bit
    return x

实施例

print("Dec Gray Binary")
for x in range(8):
    y = x ^ (x >> 1)
    print("{x: ^3} {y:03b}  {x:03b}".format(x=x, y=y))
    assert x == y2x(y)

输出

Dec Gray Binary
 0  000  000
 1  001  001
 2  011  010
 3  010  011
 4  110  100
 5  111  101
 6  101  110
 7  100  111