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

Leetcode 190 Reverse Bits 位运算

时间:2016-03-13 00:39:48      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

反转二进制

 1 class Solution {
 2 public:
 3     uint32_t reverseBits(uint32_t n) {
 4         uint32_t ans = 0;
 5         for (int  i = 0; i<32; ++i,n >>=1){
 6             ans = (ans<< 1)|(n & 1);
 7         }
 8         return ans;
 9     }
10 };

 

Leetcode 190 Reverse Bits 位运算

标签:

原文地址:http://www.cnblogs.com/onlyac/p/5270346.html

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