We know that for various reasons, there is no standard integer power function in C++. I'm performing exact arithmetic with rather small integers, what is the correct way to compute powers?
|
The standard, fast exponentiation uses repeated squaring:
The number of steps is logarithmic in the value of Update: Here is a modified version of the algorithm that performs one less multiplication and handles a few trivial cases more efficiently. Moreover, if you know that the exponent is never zero and the base never zero or one, you could even remove the initial checks:
|
|||||||||||||||
|
|
You can use The reason is that the 64-bit double precision fully covers the range of 32-bit integers. |
|||||||||||||||||||||
|
|
While Kerrek's answer is correct, there is also a "secret" feature in g++ to do this efficiently. If you look at the SGI power function, it can be easily adapted to do what you want: http://www.sgi.com/tech/stl/power.html In g++, this is implemented as __gnu_cxx::power. You probably shouldn't use these things in production code though... |
|||||||||||||||
|
|
In addition to the other answers here, there is also a nice article on Wikipedia explaining various different implementations here -> LINK |
|||
|
|
std::powuses floating point numbers, leading to potential innacuracies. I want the exact value. – static_rtti Sep 24 '12 at 9:45