I tried "x = y ** e", but that didn't work.
|
feedback
|
|
use the pow function (it takes floats/doubles though). man pow:
EDIT: BTW, for the special case of positive integer powers of 2, you can use bit shifting: (1 << x) will equal 2 to the power x. There are some potential gotchas with this, but generally it would be correct. | ||||
|
feedback
|
|
To add to what Evan said: C does not have a built-in operator for exponentiation, because it is not a primitive operation for most CPUs. Thus, it's implemented as a library function. Also, for computing the function e^x, you can use the Note that you do not want to use the | |||
feedback
|
|
Usually the dumb way is good enough.
Here's a recursive solution which takes
| |||||
feedback
|
|
The non-recursive version of the function is not too hard - here it is for integers:
(Hacked out of code for raising a double value to an integer power - had to remove the code to deal with reciprocals, for example.) | |||
feedback
|
|
or you could just write the power function, with recursion as a added bonus
yes,yes i know this is less effecient space and time complexity but recursion is just more fun!! | |||
|
feedback
|
(iterative)
(if it has to be recursive) imo, the algorithm should definitely be O(logn) | |||
|
feedback
|