标签: python data-structures
在python二进制搜索中找到我使用的中间值:
mid=math.ceil((high+low)/2).
ceil更优化还是应该使用floor或round?
ceil
floor
round
答案 0 :(得分:1)
对于算法没有性能上的差异,我认为唯一的区别在于操作的成本,地板应该是最简单的,因为除了移除浮点部分之外,计算机不需要做任何事情。 / p>