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
|
|
Exponentiation by squaring.
This is the standard method for doing modular exponentiation for huge numbers in asymmetric cryptography. |
|||||||||||||||||||
|
|
Exponentiation by squaring might be worth taking a look at. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Here is the method in Java
|
|||
|
|
|
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. |
|||||||||||||
|
|
If you need to raise 2 to a power. The fastest way to do so is to bit shift by the power.
|
|||||||
|
|
||||
|
|
|
If you want to get the value of an integer for 2 raised to the power of something it is always better to use the shift option:
This is much more efficient. |
||||
|
|
|
As I recall, math.h contains a pow(x, y) function |
|||||
|
|
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. |
|||||||||
|