vote up 1 vote down star
1

Possible Duplicate:
How to check if a number is a power of 2

Is there a way to find out a given integer is a power of 2 without using the modulus operator or division operator in C/C++ or Java? This leaves us with the shift operators. Any suggestions?

flag

closed as exact duplicate by starblue, sylvarking, Pavel Shved, D.Shawley, ephemient Oct 24 at 18:12

7 Answers

vote up 16 vote down check

the fastest algorithm should be (in Java):

 boolean isPowerOfTwo(int x) {
      return (x & (x - 1)) == 0;
 }
link|flag
2  
See also: graphics.stanford.edu/~seander/… – sylvarking Oct 24 at 15:43
2  
If you replace boolean with bool this will be valid C++ as well. Replace it with int and you got valid C – sbk Oct 24 at 17:11
vote up 6 vote down
if ((n & -n) == n)  // i.e., n is a power of 2

from java.util.Random.nextInt(int).

link|flag
vote up 4 vote down

Yes. If a number is a power of 2, only one bit is set. There are a couple of constant time bit-twiddling hacks to determine the number of set bits (even a special instruction on some x86 processors). See this question also.

link|flag
vote up 3 vote down

Exact powers of 2 will have exactly 1 bit set. You can just shift through them, comparing testing the low bit each time. If it's set more than once, fail.

There are also many ways to avoid the loop at all - some portable, some not. However, I guess, in Java, the representation of integer is constant across all platforms, so you can use the "And with one less than" trick without worry.

link|flag
vote up 1 vote down

If log2(n) is a whole number, you've found a power of two. Java's a little rusty, but here you go.

Boolean is_power_of_2(double n){
  Double test_val = Math.log(n)/Math.log(2)
  return test_val.floor == test_val
}

Due to float precision it might not be perfect for some values of n.

link|flag
vote up 0 vote down
bool IsPowOfTwo(unsigned int val)
{
  return CountBinaryDigits(val) == 1;
}

unsigned int CountBinaryDigits(unsigned int val)
{
  unsigned int cnt = 0;
  while (val != 0)
  {
    if (val & 0x1) 
      ++cnt;
    val >>= 1;
  }
  return cnt; 
}
link|flag
vote up -1 vote down
int theNumber  = 8;
int shiftCount = 0;

while( theNumber ){
  ++shiftCount;
  theNumber = theNumber >> 1;
}

if (theNumber == 2^shiftCount){
  printf("it's a power of 2");
}
link|flag

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