LeetCode 190. Reverse Bits

简介: 颠倒给定的 32 位无符号整数的二进制位。

v2-406b425cdb2eae77ca855f6c4446488f_1440w.jpg


Description



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 10101111110010110010011101101001.


描述



颠倒给定的 32 位无符号整数的二进制位。


示例 1:


输入: 00000010100101000001111010011100

输出: 00111001011110000010100101000000


解释: 输入的二进制串 00000010100101000001111010011100 表示无符号整数 43261596,

因此返回 964176192,其二进制表示形式为 00111001011110000010100101000000。


示例 2:


输入:11111111111111111111111111111101

输出:10111111111111111111111111111111


解释:输入的二进制串 11111111111111111111111111111101 表示无符号整数 4294967293,

因此返回 3221225471 其二进制表示形式为 10101111110010110010011101101001。


思路



  • 题目使用位运算,我们按位遍历给定的数字,如果是“1”我们就在结果中置1,否则置为0.


# -*- coding: utf-8 -*-
# @Author:             何睿
# @Create Date:        2019-01-19 18:17:49
# @Last Modified by:   何睿
# @Last Modified time: 2019-01-19 19:30:51
class Solution:
    # @param n, an integer
    # @return an integer
    def reverseBits(self, n):
        if not n: return 0
        res = 0
        for _ in range(32):
            # 左移一位,腾出位置存储将要存储的结果
            res <<= 1
            if n & 1: res += 1
            # 右移一位
            n >>= 1
        return res


源代码文件在这里.

目录
相关文章
|
索引
LeetCode 345. Reverse Vowels of a String
编写一个函数,以字符串作为输入,反转该字符串中的元音字母。
98 0
LeetCode 345. Reverse Vowels of a String
|
机器学习/深度学习 NoSQL
LeetCode 344. Reverse String
编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 char[] 的形式给出。 不要给另外的数组分配额外的空间,你必须原地修改输入数组、使用 O(1) 的额外空间解决这一问题。
95 0
LeetCode 344. Reverse String
|
算法 C++
LeetCode 338. Counting Bits
给定一个非负整数 num。对于 0 ≤ i ≤ num 范围中的每个数字 i ,计算其二进制数中的 1 的数目并将它们作为数组返回。
73 0
LeetCode 338. Counting Bits
LeetCode 150. Evaluate Reverse Polish Notation
根据逆波兰表示法,求表达式的值。 有效的运算符包括 +, -, *, / 。每个运算对象可以是整数,也可以是另一个逆波兰表达式。
45 0
LeetCode 150. Evaluate Reverse Polish Notation
LeetCode 92. Reverse Linked List II
给定一个链表,反转指定的子序列.
79 0
LeetCode 92. Reverse Linked List II
|
机器学习/深度学习 NoSQL 算法
LeetCode 344. 反转字符串 Reverse String
LeetCode 344. 反转字符串 Reverse String
LeetCode 206. 反转链表 Reverse Linked List
LeetCode 206. 反转链表 Reverse Linked List
【LeetCode】Counting Bits(338)
  Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representation and return them as an array.
99 0
LeetCode之Reverse String II
LeetCode之Reverse String II
114 0
LeetCode之Reverse String
LeetCode之Reverse String
99 0