本文介绍了二叉树的第一个共同的祖先的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有疑问,如果我有一个这样的二叉搜索树,那么什么将是节点6和1的最低共同祖先。感谢
解决方案
根据维基百科定义最低的共同祖先我纠正了自己:
所以是的,这个定义正确答案将是 6
。如果这是采访问题,那么很好地提前与面试官进行澄清。
I have a doubt that if i have a binary search tree like this then what will be lowest common ancestor of nodes 6 and 1.
Thanks
解决方案
According to the Wikipedia definition of the Lowest common ancestor I correct myself:
So yes going by this definition the correct answer would be 6
. If this is an interview question would be good to clarify in advance with the interviewer.
这篇关于二叉树的第一个共同的祖先的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!