forked from mehul-1607/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_50.java
54 lines (50 loc) · 1.26 KB
/
_50.java
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
package com.fishercoder.solutions;
public class _50 {
public static class Solution1 {
/**
* Time: O(logn)
* Space: O(logn)
*/
public double myPow(double x, int n) {
long N = n;
if (N < 0) {
x = 1 / x;
N = -N;
}
return fastPow(x, N);
}
private double fastPow(double x, long n) {
if (n == 0) {
return 1.0;
}
double half = fastPow(x, n / 2);
if (n % 2 == 0) {
return half * half;
} else {
return half * half * x;
}
}
}
public static class Solution2 {
/**
* Time: O(logn)
* Space: O(1)
*/
public double myPow(double x, int n) {
long N = n;
if (N < 0) {
x = 1 / x;
N = -N;
}
double answer = 1;
double currentProduct = x;
for (long i = N; i > 0; i /= 2) {
if (i % 2 == 1) {
answer = answer * currentProduct;
}
currentProduct *= currentProduct;
}
return answer;
}
}
}