这篇文章将为大家详细讲解有关PHP如何根据树的前序遍历和中序遍历构造树并输出后序遍历,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
具体如下:
先来看看前序遍历、中序遍历与后序遍历原理图:
根据树的前序遍历和中序遍历构造树并输出后序遍历代码如下:
<?php class BinaryTreeNode{ public $m_value; public $m_left; public $m_right; } function ConstructCore($preorder,$inorder){ if(count($preorder)!=count($inorder) || count($preorder)==0 || count($inorder)==0) return null; $headNode=new BinaryTreeNode; $headNode->m_value=$preorder[0]; if(count($preorder)==1){ $headNode->m_left=null; $headNode->m_right=null; return $headNode; } array_shift($preorder); $pos=array_search($headNode->m_value,$inorder); $leftin=array_slice($inorder,0,$pos); $rightin=array_slice($inorder,$pos+1); $leftpre=array_slice($preorder,0,$pos); $rightpre=array_slice($preorder,$pos); $headNode->m_left=ConstructCore($leftpre,$leftin); $headNode->m_right=ConstructCore($rightpre,$rightin); return $headNode; } $pre=array(1,2,4,7,3,5,6,8); $in=array(4,7,2,1,5,3,8,6); $tree=ConstructCore($pre,$in); function tail($tree){ if($tree->m_right!=null) echo tail($tree->m_right); if($tree->m_left!=null) echo tail($tree->m_left); echo $tree->m_value; } tail($tree); ?>
运行结果:
86537421
关于“PHP如何根据树的前序遍历和中序遍历构造树并输出后序遍历”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。