up vote 33 down vote favorite
20
share [g+] share [fb]

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
link|improve this question

64% accept rate
When you say "efficiency," you need to specify efficient in relation to what. Speed? Memory usage? Code size? Maintainability? – Andy Lester Oct 2 '08 at 17:26
Doesn't C have a pow() function? – jalf May 30 '09 at 13:07
1  
yes, but that works on floats or doubles, not on ints – Nathan Fellman May 30 '09 at 13:46
feedback

10 Answers

up vote 76 down vote accepted

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|improve this answer
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 '09 at 12:58
"res *= base;" should be "result *= base;" – Jeff Moser May 30 '09 at 13:10
3  
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 '09 at 16:42
show 1 more comment
feedback

Exponentiation by squaring might be worth taking a look at.

link|improve this answer
feedback

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|improve this answer
Yes there is, binary exponentiation. – Jeremy Salwen Jul 28 '09 at 16:48
feedback

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|improve this answer
feedback

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|improve this answer
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 10 more comments
feedback

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|improve this answer
feedback

If you need to raise 2 to a power. The fastest way to do so is to bit shift by the power.

2 ** 3 == 1 << 3 == 8
2 ** 30 == 1 << 30 == 1073741824 (A Gigabyte)
link|improve this answer
Is there an elegant way to do this so that 2 ** 0 == 1 ? – Rob Smallshire Nov 23 '11 at 21:39
2 ** 0 == 1 << 0 == 1 – Jake Dec 30 '11 at 18:22
feedback
int pow( int base, int exponent)
{
    if (exponent == 0) return 1;  // base case;
    int temp = pow(base, exponent/2);
    if (exponent % 2 == 0)
        return temp * temp; 
    else
        return (base * temp * temp);
}
link|improve this answer
feedback

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

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

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|improve this answer
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
feedback

Your Answer

 
or
required, but never shown

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