由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教一道bit操作的经典题
相关主题
Google 电话面试被拒C++ Q86: Find the bits that are one in a byte (in C)
如何左右翻转Byte弱问一个150上的10.3题,bit vector的。。。
求问leetcode新题reverse bits的follow up一道面试题
分享一道电面题,兼下午Onsite攒人品求祝福问个题目
请教一道Leetcode 题, 多谢油管面经
面试题问道题leetcode的题,关于bit运算的
Post 1 question: Bits operation using C programming悲剧的FB二面
问一道题目一道面试题,请大家给些意见
相关话题的讨论汇总
话题: byte话题: reverse话题: bit话题: 查表话题: 经典
进入JobHunting版参与讨论
1 (共1页)
t********e
发帖数: 344
1
就是那道经典的Reverse bits of an integer.
Leetcode上讲了两种方法,不过没有讲table lookup的方法,据说是最快的。
http://www.leetcode.com/2011/08/reverse-bits.html
然后我搜了一下查表法:
http://stackoverflow.com/questions/746171/best-algorithm-for-bi
答案看不懂啊,sigh, 请哪位大牛指点一下思路吧
d**********x
发帖数: 4083
2
查表法就是reverse each byte (bit by bit) then reverse the int (byte by byte)
啊。

【在 t********e 的大作中提到】
: 就是那道经典的Reverse bits of an integer.
: Leetcode上讲了两种方法,不过没有讲table lookup的方法,据说是最快的。
: http://www.leetcode.com/2011/08/reverse-bits.html
: 然后我搜了一下查表法:
: http://stackoverflow.com/questions/746171/best-algorithm-for-bi
: 答案看不懂啊,sigh, 请哪位大牛指点一下思路吧

t********e
发帖数: 344
3
那表里存的是什么呀?

byte)

【在 d**********x 的大作中提到】
: 查表法就是reverse each byte (bit by bit) then reverse the int (byte by byte)
: 啊。

d**********x
发帖数: 4083
4
一个byte reverse的结果

【在 t********e 的大作中提到】
: 那表里存的是什么呀?
:
: byte)

1 (共1页)
进入JobHunting版参与讨论
相关主题
一道面试题,请大家给些意见请教一道Leetcode 题, 多谢
a question about bits operation面试题
问一道关于reverse a C-string的问题Post 1 question: Bits operation using C programming
reverse bits problem问一道题目
Google 电话面试被拒C++ Q86: Find the bits that are one in a byte (in C)
如何左右翻转Byte弱问一个150上的10.3题,bit vector的。。。
求问leetcode新题reverse bits的follow up一道面试题
分享一道电面题,兼下午Onsite攒人品求祝福问个题目
相关话题的讨论汇总
话题: byte话题: reverse话题: bit话题: 查表话题: 经典