您的位置:首页 > 其它

二叉搜索树与双向链表

2015-07-09 15:12 162 查看








BinaryTreeNode* Convert(BinaryTreeNode*pRootOfTree)

{

BinaryTreeNode* pLastNodeInList = NULL;

ConvertNode(pRootOfTree, &pLastNodeInList);

//pLasstNodeInList指向双向链表的尾结点,我们需要返回头结点

BinaryTreeNode* pHeadOfList = pLastNodeInList;

while (pHeadOfList != NULL&&pHeadOfList->m_pLeft != NULL)

pHeadOfList = pHeadOfList->m_pLeft;

return pHeadOfList;

}

void ConvertNode(BinaryTreeNode* pNode, BinaryTreeNode** pLastNodeInList)

{

if (pNode == NULL)

return;

BinaryTreeNode *pCurrent = pNode;

if (pCurrent->m_pLeft != NULL)

ConvertNode(pCurrent->m_pLeft, pLastNodeInList);

pCurrent->m_pLeft = *pLastNodeInList;

if (*pLastNodeInList != NULL)

(*pLastNodeInList)->m_pRight = pCurrent;

*pLastNodeInList = pCurrent;

if (pCurrent->m_pRight != NULL)

ConvertNode(pCurrent->m_pRight, pLastNodeInList);

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: