Leetcode Algorithms -- Reverse Bits
Reverse Bits (Easy)
Description
Reverse bits of a given 32 bits unsigned integer.
For example, given input 43261596 (represented in binary as 00000010100101000001111010011100), return 964176192 (represented in binary as 00111001011110000010100101000000).
Analysis
新添加的一道easy部分的题目。直接位运算。。
My Solution
1 | //C++ |