文件名称:tree:php二叉树实现
文件大小:61KB
文件格式:ZIP
更新时间:2024-05-17 07:51:53
php php-lib PHP
PHP 二叉树 类实现 该类 仅实现普通的二叉树 // 安装使用如下 git clone git@github.com:wschat/tree.git cd tree composer dump-autoload 文档完善 (注:Node、Tree 均实现了ArrayAccess接口) 关于Node实例类的结构如下: 关于Tree实例类的结构如下: $root 包含当前树的根节点 $current 包含当前树的指针(目前指针在于tree()、leaf()、end()、closest()方法中使用) A / \ B C (图2) / \ D E / \ / G H F init($array,$options=[],
【文件预览】:
tree-master
----composer.json(249B)
----images()
--------node.png(33KB)
--------tree.png(16KB)
----LICENSE(1KB)
----src()
--------Tree.php(16KB)
--------Node.php(760B)
----.gitignore(9B)
----demo()
--------testTreeInsert.php(1KB)
--------testSort.php(1KB)
--------testTreeOrder.php(2KB)
--------testTreeInit.php(689B)
--------testTree.php(631B)
--------testNode.php(378B)
----README.md(9KB)
----util.php(382B)