Python基于二分查找实现求整数平方根
程序员文章站
2022-05-27 17:01:37
...
本文实例讲述了Python基于二分查找实现求整数平方根的方法。分享给大家供大家参考,具体如下:
x=int(raw_input('please input a int:')) if x<0: retrun -1 low=0 high=x ans=(low+high)/2.0 sign=ans while ans**2 !=x: if ans**2>x: high=ans else: low=ans ans=(low+high)/2.0 if sign==ans: break print ans
更多 Python基于二分查找实现求整数平方根相关文章请关注PHP中文网!