ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

190. Reverse Bits

2020-04-06 17:03:00  阅读:286  来源: 互联网

标签:binary Reverse represents unsigned signed 190 input integer Bits


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

标签:binary,Reverse,represents,unsigned,signed,190,input,integer,Bits
来源: https://www.cnblogs.com/dysjtu1995/p/12642823.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有