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 number Diff line number Diff line change 1
1
package com .fishercoder .solutions ;
2
2
3
3
/**
4
+ * 50. Pow(x, n)
5
+ *
4
6
* 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
5
17
*/
6
18
public class _50 {
7
19
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 );
21
36
}
22
- return (n % 2 == 0 ) ? myPow (x * x , n / 2 ) : x * myPow (x * x , n / 2 );
23
37
}
24
38
25
39
}
You can’t perform that action at this time.
0 commit comments