开发者

Finding two consecutive 1's in a bitstring in less then n time?

开发者 https://www.devze.com 2023-01-23 06:20 出处:网络
I am trying to figure ou开发者_JAVA技巧t a way to see if a bitstring has 2 consecutive ones in the bitstring size n in less then n time.

I am trying to figure ou开发者_JAVA技巧t a way to see if a bitstring has 2 consecutive ones in the bitstring size n in less then n time.

For example, lets say we had a bitstring size 5 (index 0-4). If index 1 and 3 were both 0's, I could return false. But if they were both ones then I may have to do 5 peeks to find my answer.

The bitstring doesn't have to be length 5. For simplicity's sake, lets say it can be between 3 and 8.


Simplest solution might be to bitwise AND the original string with a version of itself which has been shifted left or right by 1 bit. If the resulting bit string in non-zero then you have at least one 11 in there:

test = (src & (src << 1));
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号