-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_50.java
74 lines (69 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.fishercoder.solutions.firstthousand;
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;
}
}
public static class Solution3 {
/*
* credit: https://leetcode.com/problems/powx-n/solutions/19546/short-and-easy-to-understand-solution/comments/162293
*/
public double myPow(double x, int n) {
if (n == 0) {
return 1;
}
if (n < 0) {
// this is to avoid integer overflow
return 1 / x * myPow(1 / x, -(n + 1));
}
if (n % 2 == 0) {
return myPow(x * x, n / 2);
} else {
return x * myPow(x * x, n / 2);
}
}
}
}