其他分享
首页 > 其他分享> > Struct_chapter3_Tree

Struct_chapter3_Tree

作者:互联网

Struct_chapter3_Tree

3.1 tree and the expression of tree


thought bubble : optimize

黄金分割查找?
在二分查找中,我们是取mid等于left和right的中间值,即用等分的方法进行查找。
那为什么一定要等分呐?能不能进行“黄金分割”?也就是mid=left+0.618(right-left),当然mid要取整数。如果这样查找,时间复杂性是多少?也许你还可以编程做个试验,比较一下二分法和“黄金分割”法的执行效率。

标签:status,黄金分割,Struct,Tree,tree,mid,chapter3,查找,left
来源: https://blog.csdn.net/qq_38985700/article/details/90215848