vote up 14 vote down star
5

What is the most efficient way given to raise an integer to the power of another integer in C?

// 2^3
pow(2,3) == 8

// 5^5
pow(5,5) == 3125
flag

70% accept rate
Isn't it pow(2,3) = 8? – Adam Hawkes Sep 19 '08 at 12:46
I think that 2^3 = 8 – Drealmer Sep 19 '08 at 12:47
haha you're right :) – Doug T. Sep 19 '08 at 12:50
stack overflow makes you type too in too excitedly of a fashion, thus making stupid (yet luckily editable) mistakes. – Doug T. Sep 19 '08 at 12:50
Doesn't C have a pow() function? – jalf May 30 at 13:07
show 1 more comment

11 Answers

vote up 40 vote down check

Exponentiation by squaring.

int ipow(int base, int exp)
{
    int result = 1;
    while (exp)
    {
        if (exp & 1)
            result *= base;
        exp >>= 1;
        base *= base;
    }

    return result;
}

This is the standard method for doing modular exponentiation for huge numbers in asymmetric cryptography.

link|flag
With maybe break-out special cases for small exponents known to have better algorithms: turns out the questioner doesn't expect overflow anyway, so these are presumably common. – Steve Jessop Sep 19 '08 at 13:18
AKA the "fast exponentiation algorithm". – wnoise Sep 20 '08 at 4:49
Thanks for the code Elias. I beautified the code a bit for better presentation. – Ashwin May 30 at 12:58
"res *= base;" should be "result *= base;" – Jeff Moser May 30 at 13:10
You should probably add a check that "exp" isn't negative. Currently, this function will either give a wrong answer or loop forever. (Depending on whether >>= on a signed int does zero-padding or sign-extension - C compilers are allowed to pick either behaviour). – user9876 Jul 28 at 16:42
vote up 0 vote down

There are a few decent answers above, such as the one by PeterAllenWebb (citing Knuth) and the one by Pramod (the terminology he was missing though was "addition chains").

Exponentiation by Squaring is indeed not optimal. Here is one very clever method:

"Fast Exponentiation Using Data Compression" by Yacov Yacobi, SIAM Journal on Computing, Volume 28 , Issue 2 (April 1999), Pages: 700 - 703 .

link|flag
It would be nice if you could show the actual algorithm – Nathan Fellman May 10 at 19:55
vote up 1 vote down

Just as a follow up to comments on the efficiency of exponentiation by squaring.

The advantage of that approach is that it runs in log(n) time. For example, if you were going to calculate something huge, such as x^1048575 (2^20 - 1), you only have to go thru the loop 20 times, not 1 million+ using the naive approach.

Also, in terms of code complexity, it is simpler than trying to find the most optimal sequence of multiplications, a la Pramod's suggestion.

Edit:

I guess I should clarify before someone tags me for the potential for overflow. This approach assumes that you have some sort of hugeint library.

link|flag
vote up 2 vote down

There is an exhaustive discussion of this topic in:

D.E. Knuth, The Art of Computer Programming, Vol. 2: Seminumerical Algorithms, 2nd ed. Addison-Wesley, Reading, MA, 1981.

In terms of the number of multiplications required, there is an algorithm there that is superior to repeated squaring, but what the most optimal method will be depends on your exact application.

link|flag
vote up 1 vote down

When you say "efficiency," you need to specify efficient in relation to what. Speed? Memory usage? Code size? Maintainability?

link|flag
Marked up (back to zero) because this answer is not /unhelpful/, but could be insightful to some. – Arafangion May 30 at 14:19
Indeed. You cannot optimize "efficiency" without knowing what sort of efficiency you're interested in. All optimizations are tradeoffs. – Andy Lester May 30 at 20:37
vote up 5 vote down

Note that exponentiation by squaring is not the most optimal method. It is probably the best you can do as a general method that works for all exponent values, but for a specific exponent value there are might be a better method.

For instance, if you want to x^15, the method of exponentiation will give you:

x^15 = (x^7)*(x^7)*x 
x^7 = (x^3)*(x^3)*x 
x^3 = x*x*x

This is a total of 6 multiplications.

It turns this can be done using "just" 5 multiplications.

n*n = n^2
n^2*n = n^3
n^3*n^3 = n^6
n^6*n^6 = n^12
n^12*n^3 = n^15

I don't remember the source now, but I vaguely remember that there are no efficient algorithms to find this optimal sequence of multiplications.

link|flag
Yes there is, binary exponentiation. – unknown (google) Jul 28 at 16:48
vote up 0 vote down
int pow( int base, int exponent)
{
    if (exponent == 0) return 1;  // base case;
    int temp = pow(base, exponent/2);
    if (exponent % 2 == 1) return temp * temp;
    else return (base * temp * temp);
}
link|flag
vote up 9 vote down

Exponentiation by squaring might be worth taking a look at.

link|flag
vote up 3 vote down

An extremly specialized case is, when you need say 2^(-x to y), where x, is of course is negative and y is too large to do shifting on an int. You can still do 2^x in constant time by screwing with a float.

struct IeeeFloat
{

    unsigned int base : 23;
    unsigned int exponent : 8;
    unsigned int signBit : 1;
};


union IeeeFloatUnion
{
    IeeeFloat brokenOut;
    float f;
};

inline float twoToThe(char exponent)
{
    // notice how the range checking is already done on the exponent var 
    static IeeeFloatUnion u;
    u.f = 2.0;
    // Change the exponent part of the float
    u.brokenOut.exponent += (exponent - 1);
    return (u.f);
}

You can get more powers of 2 by using a double as the base type. (Thanks a lot to commenters for helping to square this post away).

There's also the possibility that learning more about Ieee floats, other special cases of exponentiation might present themselves.

link|flag
Nifty solution, but unsigend?? – paxdiablo Sep 19 '08 at 12:37
Yeah, my bad. :) thanks for pointing it out. – Doug T. Sep 19 '08 at 12:39
Nice solution if it's what you want, but this doesn't perform exponentiation in the number field of the int, so behaves differently on overflow from repeated multiplication (which is the definition of exponentiation after all). – Steve Jessop Sep 19 '08 at 12:40
An IEEE float is base x 2 ^ exp, changing the exponent value won't lead to anything else than a multiplication by a power of two, and chances are high it will denormalize the float ... your solution is wrong IMHO – Drealmer Sep 19 '08 at 12:50
I think he means *= rather than +=. Good spot, I missed that. – Steve Jessop Sep 19 '08 at 12:53
show 9 more comments
vote up -1 vote down

Ignoring the special case of 2 raised to a power, the most efficient way is going to be simple iteration.

int pow(int base, int pow) {
  int res = 1;
  for(int i=pow; i<pow; i++)
    res *= base;

  return res;
}

EDIT: As has been pointed out this is not the most efficient way... so long as you define efficiency as cpu cycles which I guess is fair enough.

link|flag
O(N) where O(log N) is possible - see yarrkov – MSalters Sep 19 '08 at 13:06
This could actually be the most efficient. N can't be arbitrarily large. Its maximum is either 31 or 63 (depending on your int size). Its like how insertion sort beats quicksort for low N. – paperhorse Sep 27 '08 at 22:01
This code doesn't work as written, i should be initialized to 0 not pow. @paperhorse, N is pow, ie 0 to INT_MAX. – Greg Rogers Oct 11 '08 at 13:54
vote up -1 vote down

As I recall, math.h contains a pow(x, y) function

link|flag
yeah but this one works with doubles – Drealmer Sep 19 '08 at 12:34

Your Answer

Get an OpenID
or

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