vote up 1 vote down star
1

The built-in Math.Pow() function in .NET raises a double base to a double exponent and returns a double result.

What's the best way to do the same with integers?

Added: It seems that one can just cast Math.Pow() result to (int), but will this always produce the correct number and no rounding errors?

flag

4 Answers

vote up 3 vote down check

Use double version, check for overflow (over max int or max long) and cast to int or long?

link|flag
How do I know this won't produce incorrect results due to rounding errors? – romkyns Dec 20 '08 at 20:27
Add 0.5 before converting to int to take care of rounding, as long as the precision of double is greater than that of int or long. – Mark Ransom Dec 20 '08 at 21:53
Doubles can represent all integers exactly up to 2^53, so this sounds like it will always work. – romkyns Dec 21 '08 at 8:15
vote up 6 vote down

A pretty fast one might be something like this:

int IntPow(int x, uint pow)
{
    int ret = 1;
    while ( pow != 0 )
    {
        if ( (pow & 1) == 1 )
            ret *= x;
        x *= x;
        pow >>= 1;
    }
    return ret;
}

Note that this does not allow negative powers. I'll leave that as an exercise to you. :)

Added: Oh yes, almost forgot - also add overflow/underflow checking, or you might be in for a few nasty surprises down the road.

link|flag
that's great for a large exponent – orip Dec 20 '08 at 18:53
Why do you need explicit overflow checking? Won't the built-in C# overflow checking apply just fine? (Assuming you pass /checked) – Jay Bazuzi Dec 20 '08 at 21:06
vote up 3 vote down

Here's a blog post that explains the fastest way to raise integers to integer powers. As one of the comments points out, some of these tricks are built into chips.

link|flag
vote up 2 vote down

Using the math in John Cook's blog link,

    public static long IntPower(int x, short power)
    {
        if (power == 0) return 1;
        if (power == 1) return x;
        // ----------------------
        int n = 15;
        while ((power <<= 1) >= 0) n--;

        long tmp = x;
        while (--n > 0)
            tmp = tmp * tmp * 
                 (((power <<= 1) < 0)? x : 1);
        return tmp;
    }
link|flag

Your Answer

Get an OpenID
or

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