剑指offer——树中两个节点的最低公共祖先

代码来源与《剑指offer》

得到从根节点开始到输入的两个结点的两条,需要遍历两次树,每遍历一次的时间复杂度是O(n),得到的两条路径的长度在最差情况时是O(n),通常情况下两条路径的长度是O(logn)。

#include <iostream>
#include <vector>
#include <list>
using namespace std;

struct TreeNode 
{
    int m_nValue;    
    std::vector<TreeNode*> m_vChildren;   
};

bool GetNodePath(TreeNode *pRoot,TreeNode *pNode, list<TreeNode*> &path)
{
	if (pRoot=pNode)
	{
		return true;
	}
	path.push_back(pRoot);
	bool found=false;
	vector<TreeNode*>::iterator i=pRoot->m_vChildren.begin();
	while(!found&&i<pRoot->m_vChildren.end())
	{
		found=GetNodePath(*i,pNode,path);
		++i;
	}
	if (!found)
	{
		path.pop_back();
	}
	return found;
}

TreeNode* GetLastCommonNode(const list<TreeNode*>& path1, const list<TreeNode*>& path2)
{
	list<TreeNode*>::const_iterator i1=path1.begin();
	list<TreeNode*>::const_iterator i2=path2.begin();
	TreeNode* pLast=NULL;
	while(i1!=path1.end()&&i2!=path2.end())
	{
		if (*i1==*i2)
		{
			pLast=*iterator;
		}
		i1++;
		i2++;
	}
	return pLast;
}

TreeNode* GetLastCommonParent(TreeNode* pRoot,TreeNode* pNode1,TreeNode* pNode2)
{
	if (pRoot==NULL||pNode1==NULL||pNode2==NULL)
	{
		return NULL;
	}
	list<TreeNode*> path1;
	GetNodePath(pRoot,pNode1,path1);
	list<TreeNode*> path2;
	GetNodePath(pRoot,pNode2,path2);
	return GetLastCommonNode(path1,path2);
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值