PHP Class&Object -- 解析PHP实现二叉树


Posted in PHP onJune 25, 2013

二叉树及其变体是数据结构家族里的重要组成部分。最为链表的一种变体,二叉树最适合处理需要一特定次序快速组织和检索的数据。

<?php
// Define a class to implement a binary tree
class Binary_Tree_Node {
    // Define the variable to hold our data:
    public $data;
    // And a variable to hold the left and right objects:
    public $left;
    public $right;    // A constructor method that allows for data to be passed in
    public function __construct($d = NULL) {
        $this->data = $d;
    }
    // Traverse the tree, left to right, in pre-order, returning an array
    // Preorder means that each node's value preceeds its children.
    public function traversePreorder() {
        // Prep some variables.
        $l = array();
        $r = array();
        // Read in the left and right children appropriately traversed:
        if ($this->left) { $l = $this->left->traversePreorder(); }
        if ($this->right) { $r = $this->right->traversePreorder(); }
        // Return a merged array of the current value, left, and right:
        return array_merge(array($this->data), $l, $r); 
    }
    // Traverse the tree, left to right, in postorder, returning an array
    // Postorder means that each node's value follows its children.
    public function traversePostorder() {
        // Prep some variables.
        $l = array();
        $r = array();
        // Read in the left and right children appropriately traversed:
        if ($this->left) { $l = $this->left->traversePostorder(); }
        if ($this->right) { $r = $this->right->traversePostorder(); }
        // Return a merged array of the current value, left, and right:
        return array_merge($l, $r, array($this->data)); 
    }
    // Traverse the tree, left to right, in-order, returning an array.
    // In-order means that values are ordered as left children, then the
    //  node value, then the right children.
    public function traverseInorder() {
        // Prep some variables.
        $l = array();
        $r = array();
        // Read in the left and right children appropriately traversed:
        if ($this->left) { $l = $this->left->traverseInorder(); }
        if ($this->right) { $r = $this->right->traverseInorder(); }
        // Return a merged array of the current value, left, and right:
        return array_merge($l, array($this->data), $r); 
    }
}
// Let's create a binary tree that will equal the following:    3
//                                                             / /      
//                                                            h   9      
//                                                               / /     
// Create the tree:                                             6   a    
$tree = new Binary_Tree_Node(3);
$tree->left = new Binary_Tree_Node('h');
$tree->right = new Binary_Tree_Node(9);
$tree->right->left = new Binary_Tree_Node(6);
$tree->right->right = new Binary_Tree_Node('a');
// Now traverse this tree in all possible orders and display the results:
// Pre-order: 3, h, 9, 6, a
echo '<p>', implode(', ', $tree->traversePreorder()), '</p>';
// Post-order: h, 9, 6, a, 3
echo '<p>', implode(', ', $tree->traversePostorder()), '</p>';
// In-order: h, 3, 6, 9, a
echo '<p>', implode(', ', $tree->traverseInorder()), '</p>';
?>

PHP 相关文章推荐
基于php验证码函数的使用示例
May 03 PHP
小谈php正则提取图片地址
Mar 27 PHP
YII路径的用法总结
Jul 09 PHP
PHP实现简单汉字验证码
Jul 28 PHP
十个PHP高级应用技巧果断收藏
Sep 25 PHP
利用switch语句进行多选一判断的实例代码
Nov 14 PHP
浅谈PHP中关于foreach使用引用变量的坑
Nov 14 PHP
PHP多维数组元素操作类的方法
Nov 14 PHP
CI框架中类的自动加载问题分析
Nov 21 PHP
php解析base64数据生成图片的方法
Dec 06 PHP
php表单处理操作
Nov 16 PHP
PHP使用PDO创建MySQL数据库、表及插入多条数据操作示例
May 30 PHP
PHP Class&amp;Object -- PHP 自排序二叉树的深入解析
Jun 25 #PHP
通过PHP current函数获取未知字符键名数组第一个元素的值
Jun 24 #PHP
PHP多例模式介绍
Jun 24 #PHP
PHP获取和操作配置文件php.ini的几个函数介绍
Jun 24 #PHP
PHP垃圾回收机制引用计数器概念分析
Jun 24 #PHP
PHP随机字符串生成代码(包括大小写字母)
Jun 24 #PHP
PHP 读取大文件的X行到Y行内容的实现代码
Jun 24 #PHP
You might like
删除数组元素实用的PHP数组函数
2008/08/18 PHP
通过curl模拟post和get方式提交的表单类
2014/04/23 PHP
php限制上传文件类型并保存上传文件的方法
2015/03/13 PHP
Symfony2框架学习笔记之表单用法详解
2016/03/18 PHP
PHP5.5.15+Apache2.4.10+MySQL5.6.20配置方法分享
2016/05/06 PHP
Docker搭建自己的PHP开发环境
2018/02/24 PHP
PHP simplexml_load_string()函数实例讲解
2019/02/03 PHP
ThinkPhP+Apache+PHPstorm整合框架流程图解
2020/11/23 PHP
js setTimeout 常见问题小结
2013/08/13 Javascript
javascript html5移动端轻松实现文件上传
2020/03/27 Javascript
JavaScript知识点总结(五)之Javascript中两个等于号(==)和三个等于号(===)的区别
2016/05/31 Javascript
使用伪命名空间封装保护独自创建的对象方法
2016/08/04 Javascript
如何正确理解javascript的模块化
2017/03/02 Javascript
单行 JS 实现移动端金钱格式的输入规则
2017/05/22 Javascript
JS实现的合并多个数组去重算法示例
2018/04/11 Javascript
webpack4.x开发环境配置详解
2018/08/04 Javascript
JS实现textarea通过换行或者回车把多行数字分割成数组并且去掉数组中空的值
2018/10/29 Javascript
[03:08]Ti4观战指南上
2014/07/07 DOTA
收藏整理的一些Python常用方法和技巧
2015/05/18 Python
Python编写Windows Service服务程序
2018/01/04 Python
python对日志进行处理的实例代码
2018/10/06 Python
Python tkinter的grid布局及Text动态显示方法
2018/10/11 Python
解决Pycharm出现的部分快捷键无效问题
2018/10/22 Python
Python 中导入csv数据的三种方法
2018/11/01 Python
Python3转换html到pdf的不同解决方案
2019/03/11 Python
django框架自定义模板标签(template tag)操作示例
2019/06/24 Python
python对象转字典的两种实现方式示例
2019/11/07 Python
Python打包模块wheel的使用方法与将python包发布到PyPI的方法详解
2020/02/12 Python
django中cookiecutter的使用教程
2020/12/03 Python
html5记忆翻牌游戏实现思路及代码
2013/07/25 HTML / CSS
美国高级工作服品牌:Carhartt
2018/01/25 全球购物
回门宴父母答谢词
2014/01/26 职场文书
教学实习自我评价
2014/01/28 职场文书
我的兄弟姐妹观后感
2015/06/15 职场文书
《初涉尘世》读后感3篇
2020/01/10 职场文书
Python实现打乒乓小游戏
2021/09/25 Python