1. 程式人生 > >顛倒給定的 32 位無符號整數的二進位制位。(python)

顛倒給定的 32 位無符號整數的二進位制位。(python)

顛倒給定的 32 位無符號整數的二進位制位。

示例:

輸入: 43261596
輸出: 964176192
解釋: 43261596 的二進位制表示形式為 00000010100101000001111010011100 ,
     返回 964176192,其二進位制表示形式為 00111001011110000010100101000000 。
class Solution:
    # @param n, an integer
    # @return an integer
    def reverseBits(self, n):
        temp = bin(n)[2:]
        count = 32-len(temp)
        if count > 0:
            for i in range(0,count):
                temp = '0' + temp
            return int(temp[::-1],2)
        return int(temp[::-1],2)