-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPow.h
57 lines (48 loc) · 1.06 KB
/
Pow.h
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
//
// Created by so_go on 2020/2/10.
//
/*
* 实现 pow(x, n) ,即计算 x 的 n 次幂函数。
示例 1:
输入: 2.00000, 10
输出: 1024.00000
示例 2:
输入: 2.10000, 3
输出: 9.26100
示例 3:
输入: 2.00000, -2
输出: 0.25000
解释: 2-2 = 1/22 = 1/4 = 0.25
说明:
-100.0 < x < 100.0
n 是 32 位有符号整数,其数值范围是 [−231, 231 − 1] 。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/powx-n
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
*/
#ifndef SRC_POW_H
#define SRC_POW_H
class Pow {
public:
double myPow(double x, int n) {
long np = n;
if(np == 0){
return 1;
}
if(np < 0){
x = 1 / x;
np = -np;
}
double res = 1, tmp = x;
while(np > 0){
if( np & 1 ){
res *= tmp;
}
tmp = tmp * tmp;
np = np >> 1;
// cout << res << endl;
}
return res;
}
};
#endif //SRC_POW_H