vote up 30 vote down star
24

Today I needed a simple algorithm for checking if a number is a power of 2.

The algorithm needs to be:

  1. Simple
  2. Correct for any ulong value.

I came up with this simple algorithm:

private bool IsPowerOfTwo(ulong number)
{
    if (number == 0)
        return false;

    for (ulong power = 1; power > 0; power = power << 1)
    {
        // this for loop used shifting for powers of 2, meaning
        // that the value will become 0 after the last shift
        // (from binary 1000...0000 to 0000...0000) then, the for
        // loop will break out

        if (power == number)
            return true;
        if (power > number)
            return false;
    }
    return false;
}

But then I thought, how about checking if log2x is an exactly round number? But when I checked for 2^63+1, Math.Log returned exactly 63 because of rounding. So I checked if 2 to the power 63 is equal to the original number - and it is, because the calculation is done in doubles and not in exact numbers:

private bool IsPowerOfTwo_2(ulong number)
{
    double log = Math.Log(number, 2);
    double pow = Math.Pow(2, Math.Round(log));
    return pow == number;
}

This returned true for the given wrong value: 9223372036854775809.

Does anyone have any suggestion for a better algorithm?

flag

Sorry to comment on a random question, but StackOverflow IS hiring (saw your comment on Jeff's post). Or rather, Fog Creek IS hiring for StackOverflow work... see jobs.stackoverflow.com/default.asp?4821 – Michael Pryor Jun 3 at 17:10
Oh! Thanks. – configurator Jun 3 at 20:54
Beware, the accepted answer is wrong. – Matt Howells Nov 27 at 13:00

7 Answers

vote up 135 vote down check

There's a simple trick for this problem:

bool IsPowerOfTwo(ulong x)
{
    return (x & (x - 1)) == 0;
}

Discovery of how and why this works is left as an exercise for the reader, as well as consideration of an obvious edge case.

link|flag
Nice! So simple and elegant. Why didn't I think of that? – configurator Mar 1 at 19:08
4  
@Kripp: The number will be of the binary form 1000...000. When you -1 it, it will be of the form 0111...111. Thus, the two number's binary and would result is 000000. This wouldn't happen for non-power-of-twos, since 1010100 for example would become 1010011, resulting in an (continued...) – configurator Mar 1 at 19:15
5  
... Resulting in a 1010000 after the binary and. The only false positive would be 0, which is why I would use: return (x != 0) && ((x & (x - 1)) == 0); – configurator Mar 1 at 19:16
5  
@ShuggyCoUk: two's complement is how negative numbers are represented. Since this is an unsigned integer, representation of negative numbers is not relevant. This technique only relies on binary representation of nonnegative integers. – Greg Hewgill Mar 1 at 22:57
2  
I am amazed that this is accepted and highly rated. This is wrong. It claims that zero is a power of two. – Matt Howells Nov 26 at 16:33
show 8 more comments
vote up 22 vote down

Some sites that document and explain this and other bit twiddling hacks are:

And the grandaddy of them, the book "Hacker's Delight" by Henry Warren, Jr.:

As Sean Anderson's page explains, the expression ((x & (x - 1)) == 0)incorrectly indicates that 0 is a power of 2. He suggests to use:

(!(x & (x - 1)) && x)

to correct that problem.

link|flag
vote up 7 vote down

return (i & -i) == i

link|flag
any hint why this will or will not work? i checked its correctness in java only, where there are only signed ints/longs. if it is correct, this would be the superior answer. faster+smaller – Andreas Petersson Jul 21 at 21:11
3  
It takes advantage of one of the properties of two's-complement notation: to calculate the negative value of a number you perform a bitwise negation and add 1 to the result. The least significant bit of i which is set will also be set in -i. The bits below that will be 0 (in both values) while the bits above it will be inverted with respect to each other. The value of i & -i will therefore be the least significant set bit in i (which is a power of two). If i has the same value then that was the only bit set. It fails when i is 0 for the same reason that i & (i - 1) == 0 does. – Michael Carman Aug 15 at 14:04
vote up 2 vote down

I wrote an article about this recently at http://www.exploringbinary.com/ten-ways-to-check-if-an-integer-is-a-power-of-two-in-c/. It covers bit counting, how to use logarithms correctly, the classic "x && !(x & (x - 1))" check, and others.

link|flag
vote up 0 vote down

After posting the question I thought of the following solution:

We need to check if exactly one of the binary digits is one. So we simply shift the number right one digit at a time, and return true if it equals 1. If at any point we come by an odd number ((number & 1) == 1), we know the result is false. This proved (using a benchmark) slightly faster than the original method for (large) true values and much faster for false or small values.

private static bool IsPowerOfTwo(ulong number)
{
    while (number != 0)
    {
        if (number == 1)
            return true;

        if ((number & 1) == 1)
            // number is an odd number and not 1 - so it's not a power of two.
            return false;

        number = number >> 1;
    }
    return false;
}


Of course, Greg's solution is much better.

link|flag
vote up 0 vote down
private static bool IsPowerOfTwo(ulong x)
{
    var l = Math.Log(x, 2);
    return (l == Math.Floor(l));
}
link|flag
Try that for the number 9223372036854775809. Does it work? I'd think not, because of rounding errors. – configurator Jul 22 at 14:39
vote up 0 vote down
bool IsPowerOfTwo(ulong x)
{
    return x > 0 && (x & (x - 1)) == 0;
}
link|flag

Your Answer

Get an OpenID
or

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