PHP Class&Object -- PHP 自排序二叉树的深入解析


Posted in PHP onJune 25, 2013

在节点之间再应用一些排序逻辑,二叉树就能提供出色的组织方式。对于每个节点,都让满足所有特定条件的元素都位于左节点及其子节点。在插入新元素时,我们需要从树的第一个节 点(根节点)开始,判断它属于哪一侧的节点,然后沿着这一侧找到恰当的位置,类似地,在读取数据时,只需要使用按序遍历方法来遍历二叉树。

<?php
ob_start();
// Here we need to include the binary tree class
Class Binary_Tree_Node() {
   // You can find the details at
}
ob_end_clean();
// Define a class to implement self sorting binary tree
class Sorting_Tree {
    // Define the variable to hold our tree:
    public $tree;
    // We need a method that will allow for inserts that automatically place
    // themselves in the proper order in the tree
    public function insert($val) {
        // Handle the first case:
        if (!(isset($this->tree))) {
            $this->tree = new Binary_Tree_Node($val);
        } else {
            // In all other cases:
            // Start a pointer that looks at the current tree top:
            $pointer = $this->tree;
            // Iteratively search the tree for the right place:
            for(;;) {
                // If this value is less than, or equal to the current data:
                if ($val <= $pointer->data) {
                    // We are looking to the left ... If the child exists:
                    if ($pointer->left) {
                        // Traverse deeper:
                        $pointer = $pointer->left;
                    } else {
                        // Found the new spot: insert the new element here:
                        $pointer->left = new Binary_Tree_Node($val);
                        break;
                    }
                } else {
                    // We are looking to the right ... If the child exists:
                    if ($pointer->right) {
                        // Traverse deeper:
                        $pointer = $pointer->right;
                    } else {
                        // Found the new spot: insert the new element here:
                        $pointer->right = new Binary_Tree_Node($val);
                        break;
                    }
                }
            }
        }
    }    // Now create a method to return the sorted values of this tree.
    // All it entails is using the in-order traversal, which will now
    // give us the proper sorted order.
    public function returnSorted() {
        return $this->tree->traverseInorder();
    }
}
// Declare a new sorting tree:
$sort_as_you_go = new Sorting_Tree();
// Let's randomly create 20 numbers, inserting them as we go:
for ($i = 0; $i < 20; $i++) {
    $sort_as_you_go->insert(rand(1,100));
}
// Now echo the tree out, using in-order traversal, and it will be sorted:
// Example: 1, 2, 11, 18, 22, 26, 32, 32, 34, 43, 46, 47, 47, 53, 60, 71,
//   75, 84, 86, 90
echo '<p>', implode(', ', $sort_as_you_go->returnSorted()), '</p>';
?>

PHP 相关文章推荐
关于php mvc开发模式的感想
Jun 28 PHP
PHP类的静态(static)方法和静态(static)变量使用介绍
Feb 19 PHP
检查php文件中是否含有bom的函数
May 31 PHP
php实现图片等比例缩放代码
Jul 23 PHP
PHP json_encode() 函数详解及中文乱码问题
Nov 05 PHP
程序员的表白神器“520”大声喊出来
May 20 PHP
php实现的中秋博饼游戏之掷骰子并输出结果功能详解
Nov 06 PHP
PHP实现负载均衡下的session共用功能
Apr 17 PHP
原生php实现excel文件读写的方法分析
Apr 25 PHP
php使用QueryList轻松采集js动态渲染页面方法
Sep 11 PHP
PHP递归算法的简单实例
Feb 28 PHP
laravel 解决多库下的DB::transaction()事务失效问题
Oct 21 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
解析在PHP中使用全局变量的几种方法
Jun 24 #PHP
You might like
删除html标签得到纯文本可处理嵌套的标签
2014/04/28 PHP
php中的ini配置原理详解
2014/10/14 PHP
php实现贪吃蛇小游戏
2016/07/26 PHP
PHP registerXPathNamespace()函数讲解
2019/02/03 PHP
javascript Base类 包含基本的方法
2009/07/22 Javascript
javascript smipleChart 简单图标类
2011/01/12 Javascript
jquery 查找iframe父级页面元素的实现代码
2011/08/28 Javascript
给页面渲染时间加速 干掉Dom Level 0 Event
2012/12/19 Javascript
jQuery中prepend()方法用法实例
2014/12/25 Javascript
简单分析javascript面向对象与原型
2015/05/21 Javascript
jquery插件splitScren实现页面分屏切换模板特效
2015/06/16 Javascript
javascript动画算法实例分析
2015/07/31 Javascript
常用Javascript函数与原型功能收藏(必看篇)
2016/10/09 Javascript
node基于async/await对mysql进行封装
2019/06/20 Javascript
微信小程序实现音乐播放器
2019/11/20 Javascript
js面向对象之实现淘宝放大镜
2020/01/15 Javascript
JavaScript变量Dom对象的所有属性
2020/04/30 Javascript
原生js实现简单轮播图
2020/10/26 Javascript
Python使用dis模块把Python反编译为字节码的用法详解
2016/06/14 Python
Python闭包之返回函数的函数用法示例
2018/01/27 Python
python递归函数绘制分形树的方法
2018/06/22 Python
Python 中字符串拼接的多种方法
2018/07/30 Python
python使用插值法画出平滑曲线
2018/12/15 Python
python字典嵌套字典的情况下找到某个key的value详解
2019/07/10 Python
Python之虚拟环境virtualenv,pipreqs生成项目依赖第三方包的方法
2019/07/23 Python
在python中logger setlevel没有生效的解决
2020/02/21 Python
Pycharm最常用的快捷键及使用技巧
2020/03/05 Python
Django中使用Json返回数据的实现方法
2020/06/03 Python
CSS3教程(5):网页背景图片
2009/04/02 HTML / CSS
canvas探照灯效果的示例代码
2018/11/30 HTML / CSS
捷克多品牌在线时尚商店:ANSWEAR.cz
2020/10/03 全球购物
学生打架检讨书大全
2014/01/23 职场文书
2015年话务员工作总结
2015/04/29 职场文书
golang 实现菜单树的生成方式
2021/04/28 Golang
Mysql数据库索引面试题(程序员基础技能)
2021/05/31 MySQL
Spring Boot 的创建和运行示例代码详解
2022/07/23 Java/Android