快速幂模板

2018-06-17 22:52:03来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cmath>
 4 using namespace std;
 5 int f(int x,int n)
 6 {
 7     int now=1;
 8     while(n)
 9     {
10         if(n&1)
11         {
12             now=now*x;
13         }
14         x=x*x;
15         n>>=1;
16     }
17     return now;
18 }
19 int main()
20 {
21     int x,n;
22     cin>>x>>n;
23     cout<<f(x,n);
24     return 0;
25 }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:tarjan算法详解

下一篇:图的遍历(bfs+dfs)模板