forked from ChenglongChen/LeetCode-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
powx-n.py
48 lines (41 loc) · 963 Bytes
/
powx-n.py
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
# Time: O(logn) = O(1)
# Space: O(1)
# Implement pow(x, n).
# Iterative solution.
class Solution(object):
def myPow(self, x, n):
"""
:type x: float
:type n: int
:rtype: float
"""
result = 1
abs_n = abs(n)
while abs_n:
if abs_n & 1:
result *= x
abs_n >>= 1
x *= x
return 1 / result if n < 0 else result
# Time: O(logn)
# Space: O(logn)
# Recursive solution.
class Solution2(object):
def myPow(self, x, n):
"""
:type x: float
:type n: int
:rtype: float
"""
if n < 0 and n != -n:
return 1.0 / self.myPow(x, -n)
if n == 0:
return 1
v = self.myPow(x, n / 2)
if n % 2 == 0:
return v * v
else:
return v * v * x
if __name__ == "__main__":
print Solution().pow(3, 5)
print Solution().pow(3, -5)