Skip to content

Commit 9ac61bc

Browse files
Updates 50_powx,_n__medium.md
Auto commit by GitBook Editor
1 parent 193ee04 commit 9ac61bc

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

50_powx,_n__medium.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ It could be faster to be O(lgn) using divide and conquer.
1919

2020
### Solutions:
2121

22-
22+
Note:
23+
-Integer.MIN_VALUE = Integer.MIN_VALUE
2324

2425
```java
2526
public class Solution {
@@ -43,4 +44,27 @@ public class Solution {
4344
}
4445
}//power
4546
}
47+
```
48+
49+
```java
50+
class Solution {
51+
public double myPow(double x, int n) {
52+
return pow(x, n);
53+
}
54+
private double pow(double x, long n) {
55+
if (n == 0) {
56+
return 1;
57+
}
58+
if (n < 0) {
59+
return 1 / pow(x, -n);
60+
}
61+
double v = pow(x, n / 2);
62+
if (n % 2 == 0) {
63+
return v*v;
64+
}
65+
else {
66+
return v*v*x;
67+
}
68+
}
69+
}
4670
```

0 commit comments

Comments
 (0)