摘要:
首先,让我们来看看百度百科上"断言函数"定义说明:1定义fr=aladdin#" class="nslog:1019" title="编辑本段" style="text-decoration:none; color:rgb(136,136,136); height:15px; line-height... 阅读全文
posted @ 2015-07-18 10:17
zfyouxi
阅读(237)
评论(0)
推荐(0)
摘要:
int pow_mod(int a,int b,int n){ int ans ; if(b == 0) return 1 ; ans = pow_mod(a,b/2,n); ans = ans * ans % n ; if( b%2 ) a... 阅读全文
posted @ 2015-07-18 09:01
zfyouxi
阅读(140)
评论(0)
推荐(0)