在PHP中创建一个树以便以后搜索

时间:2017-12-07 21:54:24

标签: php apache tree

class BTree
{
    public $root; // the root node of our tree

    public function __construct() {
        $this->root = null;
    }

    public function isEmpty() {
        return $this->root === null;
    }


}

我正在上面创建一个BTree,以便搜索我的网页的名称。我不确定的是如何保留树以便对其进行搜索。我有我的前端调用PHP文件,但每次我想访问一个树我必须重新创建它我不想做。我如何拥有它,以便服务器对树进行一次,我可以对其进行搜索?

0 个答案:

没有答案