If I have a number a, I want the value of x in b=2^x, where b is the next power of 2 greater than a.
In case you missed the tag, this is Java, and a is an int. I'm looking for the fastest way to do this. My solution thusfar is to use bit-twiddling to get b, then do (int)(log(b)/log(2)), but I feel like there has to be a faster method that doesn't involve dividing two floating-point numbers.
xvalues? What's the type ofa? – Jon Skeet Mar 9 '11 at 7:21a. It could have been ashort, alongor even beBigInteger. Can it beInteger.MAX_VALUE, in which casexcan be 32, but no higher? – Jon Skeet Mar 9 '11 at 7:37