-
Notifications
You must be signed in to change notification settings - Fork 0
/
50_pow.cpp
68 lines (55 loc) · 1.12 KB
/
50_pow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <iostream>
double myPow(double x, int n) {
// brute force
// double ret = 1;
// if (n >= 0) {
// while (n--) {
// ret *= x;
// }
// }
// else {
// ret = 1/x;
// while (++n) {
// ret /= x;
// }
// }
// return ret;
// divide & recursion
// if (n == 0) {
// return 1;
// }
// if (n < 0) {
// if (n == -2147483648)
// return 1/x * myPow(x, n + 1);
// return 1/(myPow(x, -n));
// }
// if (n % 2) {
// return x * myPow(x, n - 1);
// }
// double y = myPow(x, n/2);
// return y*y;
// divide & iterator
double ret = 1.0;
if (n < 0) {
if (n == -2147483648) {
n++;
ret *= 1/x;
}
n = -n;
x = 1.0/x;
}
std::cout << x << " " << n <<std::endl;
while (n) {
if (n & 1) {
ret *= x;
}
x *= x;
n >>= 1;
}
return ret;
}
int main(int argc, char const *argv[])
{
std::cout << myPow(2.0000, -100) << std::endl;
return 0;
}