forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_50.java
69 lines (61 loc) · 1.16 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
package com.fishercoder.solutions;
/**
* 50. Pow(x, n)
*
* Implement pow(x, n).
Example 1:
Input: 2.00000, 10
Output: 1024.00000
Example 2:
Input: 2.10000, 3
Output: 9.26100
*/
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;
}
}
}