2的次幂表示【递归算法训练】
将这种2进制表示写成2的次幂的和的形式,令次幂高的排在前面,可得到如下表达式:137=2^7+2^3+2^0
现在约定幂次用括号来表示,即a^b表示为a(b)
此时,137可表示为:2(7)+2(3)+2(0)
进一步:7=2^2+2+2^0 (2^1用2表示)
3=2+2^0
所以最后137可表示为:2(2(2)+2+2(0))+2(2+2(0))+2(0)
又如:1315=2^10+2^8+2^5+2+1
所以1315最后可表示为:
2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2(0))+2+2(0)
提示
用递归实现会比较简单,可以一边递归一边输出
1 #include <stdio.h> 2 void toBinary(int n,int x); 3 int main() 4 { 5 int n; 6 freopen("out1.txt","w",stdout); 7 n=1; 8 while(n<=255) 9 { 10 //scanf("%d",&n); 11 printf("%d---->",n); 12 toBinary(n,0); 13 printf("\n"); 14 n++; 15 } 16 17 return 0; 18 } 19 void toBinary(int n,int x) 20 { 21 int t; 22 if(n==0) 23 return; 24 else 25 { 26 t=n%2; 27 toBinary(n/2,x+1); 28 if(t) 29 { 30 if(x==1) 31 { 32 if(n/2==0) 33 printf("2"); 34 else printf("+2"); 35 } 36 else 37 { 38 if(n/2==0) 39 printf("2(%d)",x); 40 else printf("+2(%d)",x); 41 } 42 } 43 } 44 }
1 #include <stdio.h> 2 void toBinary(int n,int x); 3 int main() 4 { 5 int n; 6 /*scanf("%d",&n); 7 toBinary(n,0);*/ 8 9 freopen("out2.txt","w",stdout); 10 n=1; 11 while(n<=255) 12 { 13 //scanf("%d",&n); 14 printf("%d---->",n); 15 toBinary(n,0); 16 printf("\n"); 17 n++; 18 } 19 20 return 0; 21 } 22 void toBinary(int n,int x) 23 { 24 int t; 25 if(n==0) 26 return; 27 else 28 { 29 t=n%2; 30 toBinary(n/2,x+1); 31 if(t) 32 { 33 if(x==1) 34 { 35 if(n/2==0) 36 printf("2"); 37 else printf("+2"); 38 } 39 else 40 { 41 if(n/2==0) 42 { 43 //printf("2(%d)",x); 44 if(x==0) printf("2(0)"); 45 else 46 { 47 printf("2(",x); 48 toBinary(x,0); 49 printf(")"); 50 } 51 } 52 else 53 { 54 //printf("+2(%d)",x); 55 if(x==0) printf("+2(0)"); 56 else 57 { 58 printf("+2(",x); 59 toBinary(x,0); 60 printf(")"); 61 } 62 } 63 } 64 } 65 } 66 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。