Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to find out the best way to generate the following bitmask : - For a given input n, the output would be a bitmask which has the first (n-1) bits set, and all other bits unset.

Example:

if n = 1, output = 0x00000001 = 00000000000000000000000000000001
if n = 2, output = 0x00000003 = 00000000000000000000000000000011
if n = 3, output = 0x00000007 = 00000000000000000000000000000111

I know of the obvious iterative way(setting the bits one at a time), that would take O(n) time....I'm just wondering if there's any "bit-magic" that can do this in constant time, or at least sub-linear time (without using LUT !!)

Any takers ?

share|improve this question
I didn't say n-1 bits set, I said the first n-1 bits(i.e 0 to n-1 th bit) would be set - Remember, the LSB is the 0th bit, so for n=1, first 0 bits (meaning only 0th bit) would be set !! – TCSGrad Mar 26 '11 at 5:33
Oops, the above was in response to a comment, looks like he deleted it before I finished !! – TCSGrad Mar 26 '11 at 5:34

1 Answer

up vote 9 down vote accepted

This should do it: (1 << n) - 1

share|improve this answer
Nice...I knew i was overlooking something !! – TCSGrad Mar 26 '11 at 5:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.