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
|
5
|
|||||||||||
|
|
|
Exponentiation by squaring.
This is the standard method for doing modular exponentiation for huge numbers in asymmetric cryptography. |
||||||||||
|
|
|
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 . |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
When you say "efficiency," you need to specify efficient in relation to what. Speed? Memory usage? Code size? Maintainability? |
||||
|
|
|
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:
This is a total of 6 multiplications. It turns this can be done using "just" 5 multiplications.
I don't remember the source now, but I vaguely remember that there are no efficient algorithms to find this optimal sequence of multiplications. |
||
|
|
|
|
||
|
|
|
|
Exponentiation by squaring might be worth taking a look at. |
||
|
|
|
|
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.
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. |
||||||||||
|
|
|
Ignoring the special case of 2 raised to a power, the most efficient way is going to be simple iteration.
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. |
||||||
|
|
|
As I recall, math.h contains a pow(x, y) function |
||
|