鱼C论坛

 找回密码
 立即注册
查看: 2156|回复: 3

[已解决]递归编写一个十进制转换为二进制的函数

[复制链接]
发表于 2020-11-19 20:41:49 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
def Dec2Bin(dec):
    result = ''
   
    if dec:
        result = Dec2Bin(dec//2)
        return result + str(dec%2)
    else:
        return result

print(Dec2Bin(62))

下面这两句我不太理解:最好能分解到每一步?谢谢!!
result = Dec2Bin(dec//2)
return result + str(dec%2)
最佳答案
2020-11-19 21:18:03
     先对函数变形,效果一样,但是更容易理解
def Dec2Bin(dec):
    if dec:
        return Dec2Bin(dec // 2) + str(dec % 2)
    else:
        return ''
        下面是递归的全过程:
       Dec2Bin(62) = Dec2Bin(62 // 2) + str(62 % 2) = Dec2Bin(31) + '0'
       Dec2Bin(31) = Dec2Bin(31 // 2) + str(31 % 2) = Dec2Bin(15) + '1'
       Dec2Bin(15) = Dec2Bin(15 // 2) + str(15 % 2) = Dec2Bin( 7) + '1'
       Dec2Bin( 7) = Dec2Bin( 7 // 2) + str( 7 % 2) = Dec2Bin( 3) + '1'
       Dec2Bin( 3) = Dec2Bin( 3 // 2) + str( 3 % 2) = Dec2Bin( 1) + '1'
       Dec2Bin( 1) = Dec2Bin( 1 // 2) + str( 1 % 2) = Dec2Bin( 0) + '1'
       Dec2Bin( 0) = ''
       只要从最下面把 Dec2Bin(0) = '' 带入 Dec2Bin(1),得到 Dec2Bin(1) = '1' , 再把这个结果带入 Dec2Bin(3) 得到 Dec2Bin(3) = '11' 。。。。。。最终带入的结果,Dec2Bin(62) = '111110'
       Dec2Bin(62) = '' + '1' + '1' + '1' + '1' + '1' + '0' = '111110'
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-11-19 21:00:23 | 显示全部楼层
def Dec2Bin(dec):
    result = ''
   
    if dec: #如果dec不等于0
        result = Dec2Bin(dec//2)
        return result + str(dec%2)
'''
               result + str(dec%2)=Dec2Bin(62//2) + str(62%2)  
                                  =Dec2Bin(31) + str(62%2)
                                  =Dec2Bin(31//2) +str(31%2) + str(62%2)
                                  =Dec2Bin(15) +str(31%2) + str(62%2)
                                  =Dec2Bin(15//2) + str(15%2) +str(31%2) + str(62%2)
                                  =Dec2Bin(7) + str(15%2) +str(31%2) + str(62%2)
                                  =Dec2Bin(7//2) + str(7%2) + str(15%2) +str(31%2) + str(62%2)
                                  =Dec2Bin(3) + str(7%2) + str(15%2) +str(31%2) + str(62%2)
                                  =Dec2Bin(3//2) + str(3%2) + str(7%2) + str(15%2) +str(31%2) + str(62%2)
                                  =Dec2Bin(1) + str(3%2) + str(7%2) + str(15%2) +str(31%2) + str(62%2)
                                  =Dec2Bin(1//2)+ str(1%2) + str(3%2) + str(7%2) + str(15%2) +str(31%2) + str(62%2)
                                  =Dec2Bin(0)+ str(1%2) + str(3%2) + str(7%2) + str(15%2) +str(31%2) + str(62%2)
                                  ='' +'1'+'1'+'1'+'1'+'1'+'0'
                                  ='111110'
'''
    else:
        return result

print(Dec2Bin(62))
        
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-11-19 21:02:50 | 显示全部楼层
看了其他帖子,,,,理解了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-19 21:18:03 | 显示全部楼层    本楼为最佳答案   
     先对函数变形,效果一样,但是更容易理解
def Dec2Bin(dec):
    if dec:
        return Dec2Bin(dec // 2) + str(dec % 2)
    else:
        return ''
        下面是递归的全过程:
       Dec2Bin(62) = Dec2Bin(62 // 2) + str(62 % 2) = Dec2Bin(31) + '0'
       Dec2Bin(31) = Dec2Bin(31 // 2) + str(31 % 2) = Dec2Bin(15) + '1'
       Dec2Bin(15) = Dec2Bin(15 // 2) + str(15 % 2) = Dec2Bin( 7) + '1'
       Dec2Bin( 7) = Dec2Bin( 7 // 2) + str( 7 % 2) = Dec2Bin( 3) + '1'
       Dec2Bin( 3) = Dec2Bin( 3 // 2) + str( 3 % 2) = Dec2Bin( 1) + '1'
       Dec2Bin( 1) = Dec2Bin( 1 // 2) + str( 1 % 2) = Dec2Bin( 0) + '1'
       Dec2Bin( 0) = ''
       只要从最下面把 Dec2Bin(0) = '' 带入 Dec2Bin(1),得到 Dec2Bin(1) = '1' , 再把这个结果带入 Dec2Bin(3) 得到 Dec2Bin(3) = '11' 。。。。。。最终带入的结果,Dec2Bin(62) = '111110'
       Dec2Bin(62) = '' + '1' + '1' + '1' + '1' + '1' + '0' = '111110'
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-17 21:45

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表