RT,求问这份代码有什么缺点。
int pow(int n,int m){ if(!m) return 1; if(!(m&1)){ int res=pow(n,m>>1); return res*res%mod; } return n*pow(n,m-1)%mod; }