二叉树遍历算法
<p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 二叉树遍历,是值从根节点出发,按照某种次序依次访问二叉树中的所有节点,使得每个节点被访问一次且仅被访问依次。 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;text-align:center;"> <img src="/static/imghw/default1.png" data-src="http://lanecn-upload.stor.sinaapp.com/image/20140709_1404896527_874807.gif" class="lazy" title="20140709_1404896527_874807.gif" alt="tupan062.gif" style="max-width:90%"> </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;text-align:center;"> 图是百度搜的。。。谢谢提供图的英雄。。 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 前序遍历二叉树:如果二叉树为空则返回,若二叉树非空,则先遍历左树,再遍历右树,遍历顺序为ABCDEGF。 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 中序遍历二叉树:如果二叉树为空则返回,若二叉树非空,则从根节点开始,中序遍历根节点的左子树,然后是访问根节点,最后中序遍历右子树,遍历顺序为CBEGDFA。 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 后序遍历二叉树:如果二叉树为空则返回,若二叉树非空,则从左到右先叶子后节点的访问遍历访问左右子树,最后是访问根节点。访问顺序为CGEFDBA。 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 层序遍历二叉树:如果二叉树为空则返回,若二叉树非空,则从树的第一层,也就是根节点开始访问,从上而下逐层遍历,在同一层中,按照从左到右的顺序对节点逐个访问。访问顺序为ABCDEFG。 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br> </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 现在,我们用PHP代码,来遍历二叉树结构。二叉树是放一个大数组,每一个节点都有三个字段,data表示这个节点的值,lChild表示这个节点的左边子节点,rChild表示这个节点的右边子节点。二叉树的结构我们用上面那张图。 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br> </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 二叉树结构代码如下: </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br> </p> <pre class='brush:php;toolbar:false;'> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br /> </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <?php </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //二叉树 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> $arr = array( </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'data' => 'A', </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'lChild' => array( </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'data' => 'B', </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'lChild' => array( </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'data' => 'C', </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'lChild' => array(), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'rChild' => array(), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> ), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'rChild' => array( </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'data' => 'D', </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'lChild' => array( </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'data' => 'E', </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'lChild' => array(), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'rChild' => array( </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'data' => 'G', </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'lChild' => array(), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'rChild' => array(), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> ), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> ), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'rChild' => array( </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'data' => 'F', </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'lChild' => array(), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'rChild' => array(), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> ), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> ), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> ), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> 'rChild' => array(), </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> ); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br /> </p>
遍历算法一:前序遍历二叉树
<p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br /> </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <?php </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //前序遍历二叉树算法 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> echo '前序遍历二叉树算法:'; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> PreOrderTraverse($arr); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> echo '<Br>'; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> function PreOrderTraverse($node){ </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> if(empty($node)){ </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> return; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> } </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //输出值 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> print_r($node['data']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //左节点 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> PreOrderTraverse($node['lChild']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //右节点 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> PreOrderTraverse($node['rChild']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> } </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br /> </p>
遍历算法二:中序遍历二叉树
<p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br /> </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <?php </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //中序遍历二叉树算法 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> echo '中序遍历二叉树算法:'; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> inOrderTraverse($arr); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> echo '<Br>'; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> function inOrderTraverse($node){ </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> if(empty($node)){ </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> return; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> } </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //左节点 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> inOrderTraverse($node['lChild']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //输出值 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> print_r($node['data']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //右节点 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> inOrderTraverse($node['rChild']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> } </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br /> </p>
遍历算法三:后序遍历二叉树
<p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> <br /> </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;white-space:normal;"> <?php </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //后序遍历二叉树算法 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> echo '后序遍历二叉树算法:'; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> postOrderTraverse($arr); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> echo '<Br>'; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> function postOrderTraverse($node){ </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> if(empty($node)){ </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> return; </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> } </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //左节点 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> postOrderTraverse($node['lChild']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //右节点 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> postOrderTraverse($node['rChild']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> //输出值 </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> print_r($node['data']); </p> <p style="box-sizing:border-box;margin-top:0px;margin-bottom:10px;"> } </p>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov
