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

LeetCode题解之Reverse Bits

时间:2018-07-11 19:50:33      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:类的方法   iter   rev   bubuko   分析   begin   bit   分享图片   inf   

1、题目描述

技术分享图片

2、题目分析

使用bitset 类的方法

 

3、代码

 1 uint32_t reverseBits(uint32_t n) {
 2         bitset<32> b(n);
 3         
 4         string b_s = b.to_string() ;
 5         
 6         for( string::iterator it_b = b_s.begin() , it_e = b_s.end() - 1;  it_b < it_e ; ++it_b ,--it_e ){
 7             swap(*it_b ,*it_e);
 8         }
 9         
10         bitset<32> br( b_s ) ;
11         
12         uint32_t nr = (uint32_t) br.to_ulong() ;
13         return nr;
14         
15         
16         
17     }

 

LeetCode题解之Reverse Bits

标签:类的方法   iter   rev   bubuko   分析   begin   bit   分享图片   inf   

原文地址:https://www.cnblogs.com/wangxiaoyong/p/9295806.html

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