码迷,mamicode.com
首页 > 其他好文 > 详细

190. Reverse Bits

时间:2020-04-06 17:33:56      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:Plan   +=   his   amp   its   ota   imp   lan   therefore   

Problem:

Reverse bits of a given 32 bits unsigned integer.

Example 1:

Input: 00000010100101000001111010011100
Output: 00111001011110000010100101000000
Explanation: The input binary string 00000010100101000001111010011100 represents the unsigned integer 43261596, so return 964176192 which its binary representation is 00111001011110000010100101000000.

Example 2:

Input: 11111111111111111111111111111101
Output: 10111111111111111111111111111111
Explanation: The input binary string 11111111111111111111111111111101 represents the unsigned integer 4294967293, so return 3221225471 which its binary representation is 10111111111111111111111111111111.

Note:

Note that in some languages such as Java, there is no unsigned integer type. In this case, both input and output will be given as signed integer type and should not affect your implementation, as the internal binary representation of the integer is the same whether it is signed or unsigned.
In Java, the compiler represents the signed integers using 2‘s complement notation. Therefore, in Example 2 above the input represents the signed integer -3 and the output represents the signed integer -1073741825.

思路

Solution (C++):

uint32_t reverseBits(uint32_t n) {
    vector<int> res;
    uint32_t ans = 0;
    if (n == 0)  return 0;
    while (n) {
        res.push_back(n%2);
        n /= 2;
    }
    int len = res.size();
    for (int i = 0; i < len; ++i) {
        ans += res[i] * pow(2, 31-i);
    }
    return ans;
}

性能

Runtime: 4 ms??Memory Usage: 6.7 MB

思路

Solution (C++):


性能

Runtime: ms??Memory Usage: MB

190. Reverse Bits

标签:Plan   +=   his   amp   its   ota   imp   lan   therefore   

原文地址:https://www.cnblogs.com/dysjtu1995/p/12642823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!