LeetCode 50. Pow(x, n)
2019-08-27 07:06:43来源:博客园 阅读 ()
LeetCode 50. Pow(x, n)
题目
利用二进制的思想,我喜欢称其为倍增思想。
实现把x 的 x, x^2 , x^4 , x^8, x^16,x^32 ....算出来
存在数组里:
pow[0] = x;
pow[1] = x^2;
pow[2] = x^4;
pow[3] = x^8;
....
有了这个数组,任意的 x^n 都可以表示成 x * x^n1 * x^n2....
比如 x^15 = x^8 + x^4 + x^2 +x;
所有任意的x^n 都可以用log(n)的效率完成
class Solution {
public:
double pow[35];
double myPow(double x, int n) {
if(n==0)
return 1;
long long int n2;
int tag=0;
if(n<0){
n2 = (long long int)n*-1;
tag=1;
}
else
n2=n;
long long int pos = 1;
int i=0;
double ans = x;
pow[i]=ans;
while((pos<<1)<=n2 && (pos<<1)>0)
{
ans*=ans;
pos <<= 1;
i++;
pow[i]=ans;
}
ans=1;
while(n2)
{
if(n2<pos)
{
pos>>=1;
i--;
continue;
}
n2-=pos;
ans*=pow[i];
pos>>=1;
i--;
}
if(tag==1)
return 1.0/ans;
else
return ans;
}
};
原文链接:https://www.cnblogs.com/dacc123/p/11413311.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- leetcode 反转链表 2020-06-06
- [题记-动态规划] 编辑距离 - leetcode 2020-04-06
- [题记]字符串转换整数-leetcode 2020-04-03
- [题记]有效括号的嵌套深度-leetcode 2020-04-01
- [题记-数学-面试题]约瑟夫环-leetcode 2020-03-30
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash