快速幂取模模板
long exp_mod(long a,long n,long b)??? //a為底數(shù),n為冪數(shù),b為余數(shù)
{
??? long t;
??? if(n==0) return 1%b;
??? if(n==1) return a%b;
??? t=exp_mod(a,n/2,b);
??? t=t*t%b;
??? if((n&1)==1) t=t*a%b;
??? return t;
}
總結(jié)
- 上一篇: 网页与APP中那些优美的登陆表单
- 下一篇: TS流 PS流 ES流