代码拉取完成,页面将自动刷新
/*
*
* [50] Pow(x, n)
*/
#include <bits/stdc++.h>
using namespace std;
// @lc code=start
class Solution
{
double pow_positive(double x, int n)
{
if (x >= INFINITY)
return INFINITY;
if (n == 0)
return 1;
if (n & 1)
return x * pow_positive(x, n - 1);
return pow_positive(x * x, n >> 1);
}
public:
double myPow(double x, int n)
{
if (n == 0)
return 1;
if (x == 0)
return 0;
if (x == 1)
return 1;
if (x == -1)
return n & 1 ? -1 : 1;
if (n > 0)
return pow_positive(x, abs(n));
else
return 1 / pow_positive(x, abs(n));
}
};
// @lc code=end
int main()
{
Solution s;
cout << s.myPow(2, -2) << " " << (-5 & 1) << endl;
cout << s.myPow(2, 214748648) << " " << s.myPow(2, -214748648) << endl;
cout << INFINITY * 500 << " " << 1 / INFINITY << endl;
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。