Skip to content

Commit 1d0f00c

Browse files
[N-0] refactor 50
1 parent 823d01d commit 1d0f00c

File tree

1 file changed

+28
-14
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+28
-14
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,39 @@
11
package com.fishercoder.solutions;
22

33
/**
4+
* 50. Pow(x, n)
5+
*
46
* Implement pow(x, n).
7+
8+
Example 1:
9+
10+
Input: 2.00000, 10
11+
Output: 1024.00000
12+
13+
Example 2:
14+
15+
Input: 2.10000, 3
16+
Output: 9.26100
517
*/
618
public class _50 {
719

8-
public double myPow(double x, int n) {
9-
if (n == 0) {
10-
return 1;
11-
}
12-
if (n == Integer.MIN_VALUE) {
13-
++n;
14-
n = -n;
15-
x = 1 / x;
16-
return x * x * myPow(x * x, n / 2);
17-
}
18-
if (n < 0) {
19-
n = -n;
20-
x = 1 / x;
20+
public static class Solution1 {
21+
public double myPow(double x, int n) {
22+
if (n == 0) {
23+
return 1;
24+
}
25+
if (n == Integer.MIN_VALUE) {
26+
++n;
27+
n = -n;
28+
x = 1 / x;
29+
return x * x * myPow(x * x, n / 2);
30+
}
31+
if (n < 0) {
32+
n = -n;
33+
x = 1 / x;
34+
}
35+
return (n % 2 == 0) ? myPow(x * x, n / 2) : x * myPow(x * x, n / 2);
2136
}
22-
return (n % 2 == 0) ? myPow(x * x, n / 2) : x * myPow(x * x, n / 2);
2337
}
2438

2539
}

0 commit comments

Comments
 (0)