1326:【例7.5】 取余运算(mod)

#include<bits/stdc++.h>
using namespace std;
int b,p,k;
int calculate(int p)
{
    int temp;

    if(p==0)//b^0%k=1
        return 1;
        cout<<p<<endl;
    temp=calculate(p/2)%k;
    cout<<"safd"<<endl;
    cout<<temp<<"f110"<<endl;
    temp=(temp*temp)%k;//b^p%k=(b^(p/2)^2)%k
    if(p%2==1)
        temp=(temp*b)%k;
        cout<<"fdsadffdsdfafds"<<temp<<endl;
    return temp;
}
int main()
{
    cin>>b>>p>>k;
    int temp=b;
    b%=k;
    cout<<temp<<"^"<<p<<" mod "<<k<<"="<<calculate(p)<<endl;
    return 0;
}


分析:

这题是因为数据规模很大,不能死算

上面编译结果可以理解递归

a.     a*b%k=(a%k)*(b%k)%k 这个知识点用到的是在递归用到的 理解这个代码的递归就会知道

  对于这个2 10 9 来说 是把10分成10 5 4 2 1这几个2的次方相乘起来


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值