php实现先序、中序、后序遍历二叉树

26 篇文章 0 订阅

二叉树是每个节点最多有两个子树的树结构。通常子树被称作“左子树”(left subtree)和“右子树”(right subtree)。二叉树常被用于实现二叉查找树和二叉堆


<?php
class Node{
	public $value;
	public $left;
	public $right;
}
//先序遍历 根节点 ---> 左子树 ---> 右子树
function preorder($root){
	$stack=array();
	array_push($stack,$root);
	while(!empty($stack)){
		$center_node=array_pop($stack);
		echo $center_node->value.' ';//先输出根节点
		if($center_node->right!=null){
			array_push($stack,$center_node->right);//压入左子树
		}
		if($center_node->left!=null){
			array_push($stack,$center_node->left);
		}
	}
}
//中序遍历,左子树---> 根节点 ---> 右子树
function inorder($root){
    $stack = array();
    $center_node = $root;
    while (!empty($stack) || $center_node != null) {
             while ($center_node != null) {
                 array_push($stack, $center_node);
                 $center_node = $center_node->left;
             }
 
             $center_node = array_pop($stack);
             echo $center_node->value . " ";
 
             $center_node = $center_node->right;
         }
}
//后序遍历,左子树 ---> 右子树 ---> 根节点
function tailorder($root){
	$stack=array();
	$outstack=array();
	array_push($stack,$root);
	while(!empty($stack)){
		$center_node=array_pop($stack);
		array_push($outstack,$center_node);//最先压入根节点,最后输出
		if($center_node->left!=null){
			array_push($stack,$center_node->left);
		}
		if($center_node->right!=null){
			array_push($stack,$center_node->right);
		}
	}
	
	while(!empty($outstack)){
		$center_node=array_pop($outstack);
		echo $center_node->value.' ';
	}
	
}
$a=new Node();
$b=new Node();
$c=new Node();
$d=new Node();
$e=new Node();
$f=new Node();
$a->value='A';
$b->value='B';
$c->value='C';
$d->value='D';
$e->value='E';
$f->value='F';
$a->left=$b;
$a->right=$c;
$b->left=$d;
$c->left=$e;
$c->right=$f;
preorder($a);//A B D C E F 
echo '<hr/>';
inorder($a);//D B A E C F
echo '<hr/>';
tailorder($a);//D B E F C A

结果:

A B D C E F


D B A E C F
D B E F C A

  • 3
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
二叉链实现二叉树先序中序后序遍历操作的具体步骤如下: 1. 定义二叉树节点类,包含节点值、左右子节点等属性。 2. 根据输入的前序序列和中序序列构建二叉树。具体步骤如下: 1. 前序序列的第一个元素为根节点,将其在中序序列中找到对应位置,左边为左子树的中序序列,右边为右子树的中序序列。 2. 根据左子树的中序序列长度,在前序序列中找到左子树的前序序列,右边为右子树的前序序列。 3. 递归构建左子树和右子树。 3. 实现先序遍历、中序遍历和后序遍历函数。具体步骤如下: 1. 先序遍历:先输出当前节点的值,再递归遍历左子树和右子树。 2. 中序遍历:先递归遍历左子树,再输出当前节点的值,最后递归遍历右子树。 3. 后序遍历:先递归遍历左子树和右子树,最后输出当前节点的值。 4. 统计二叉树的叶子数。具体步骤如下: 1. 如果当前节点为空,则返回0。 2. 如果当前节点为叶子节点,则返回1。 3. 否则,递归统计左子树和右子树的叶子数,并将它们相加。 下面是Python代码实现: ```python class TreeNode: def __init__(self, val): self.val = val self.left = None self.right = None def buildTree(preorder, inorder): if not preorder or not inorder: return None root_val = preorder[0] root = TreeNode(root_val) root_index = inorder.index(root_val) root.left = buildTree(preorder[1:root_index+1], inorder[:root_index]) root.right = buildTree(preorder[root_index+1:], inorder[root_index+1:]) return root def preorderTraversal(root): if not root: return [] res = [] res.append(root.val) res += preorderTraversal(root.left) res += preorderTraversal(root.right) return res def inorderTraversal(root): if not root: return [] res = [] res += inorderTraversal(root.left) res.append(root.val) res += inorderTraversal(root.right) return res def postorderTraversal(root): if not root: return [] res = [] res += postorderTraversal(root.left) res += postorderTraversal(root.right) res.append(root.val) return res def countLeaves(root): if not root: return 0 if not root.left and not root.right: return 1 return countLeaves(root.left) + countLeaves(root.right) # 示例 preorder = [1, 2, 4, 5, 3, 6, 7] inorder = [4, 2, 5, 1, 6, 3, 7] root = buildTree(preorder, inorder) print("先序遍历:", preorderTraversal(root)) print("中序遍历:", inorderTraversal(root)) print("后序遍历:", postorderTraversal(root)) print("叶子数:", countLeaves(root)) --相关问题--:

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值