题解 | #求解立方根# 最强解法(没有之一

求解立方根

https://www.nowcoder.com/practice/caf35ae421194a1090c22fe223357dca

import struct

def fast_cube_root(num: float) -> float:
    abs_num = abs(num)
    x = abs(num)
    i = struct.unpack('I', struct.pack('f', abs_num))[0] # evil floating point bit level hacking
    i = (i >> 2) + (i >> 4) + (i >> 6) + (i >> 8) + (i >> 10) + (i >> 12)+ 0x2a555555 # what the fuck?
    y = struct.unpack('f', struct.pack('I', i))[0]

    y = (2 * y + x / (y * y)) *0.3332 # 1st iteration
    # y = (2 * y + x / (y * y)) *0.3332 # 2nd iteration, this can be removed
    y =-y if num < 0 else y
    return round(y,1)

  
print(fast_cube_root(float(input())))

全部评论

相关推荐

11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
totoroyyw:千年老妖😂
投递华为等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务