快速求幂算法
摘要:
1 #include <stdio.h> 2 #include <math.h> 3 //递归算法 4 int recursion(int a,int b) 5 { 6 int tem = 1; 7 if(b==0)return 1; 8 else if(b==1)return a; 9 tem = recursion(a,b>>1);10 tem = tem*tem;11 if(b&1) tem = tem * a;12 return tem;13 }14 //循环算法15 int loop(int a,int b)16 {17 ... 阅读全文
posted @ 2012-04-25 22:06 NewPanderKing 阅读(2326) 评论(0) 推荐(0) 编辑