中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP怎么實現線段樹

發布時間:2021-06-28 17:14:49 來源:億速云 閱讀:142 作者:chen 欄目:編程語言

這篇文章主要講解了“PHP怎么實現線段樹”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“PHP怎么實現線段樹”吧!

線段樹是一種二叉搜索樹,與區間樹相似,它將一個區間劃分成一些單元區間,每個單元區間對應線段樹中的一個葉結點。下面就由小編給大家分享一下php實現線段樹的方法,有需要的可以參考一下。

1. 特征

  • 不一定是完全二叉樹
  • 一定是平和二叉樹
  • 葉子結點存儲的是實際的值,非葉子結點存的是自定義的內容

2. 時間復雜度

操作時間復雜度
查詢O(logn)

3. 線段樹的圖解

PHP怎么實現線段樹

4. 代碼

<?php
/**
 * content: 線段樹(區間樹)
 * create: 2020-11-12
 */

namespace HeapBundle;

use ArrayBundle\BaseArray;

class SegmentTreeHeap
{
    /**
     * 傳入的數組對象
     * @var BaseArray 
     */
    protected $array;

    /**
     * 數組
     * @var array 
     */
    protected $tree = [];

    public function __construct(BaseArray $array)
    {
        $this->array = $array;
        $this->build(0, 0, $this->array->getSize() - 1);
    }

    /**
     * 構建線段樹
     * @param int $treeIndex
     * @param int $min
     * @param int $max
     * @throws \Exception
     */
    public function build(int $treeIndex, int $min, int $max)
    {
        // 如果線段區間的最小值和最小值相同,則表示為葉子結點
        if ($min == $max) {
            $this->tree[$treeIndex] = $this->array->get($max);
            return;
        }

        // 四舍五入取中間值  最大值減最小值然后除以2拿到中間值,并加上最小值
        $mid = floor(($max - $min) / 2) + $min;

        // 獲取左兒子的索引值,并遞歸往下構建
        $leftIndex = $this->leftChildIndex($treeIndex);
        $this->build($leftIndex, $min, $mid);

        // 獲取右兒子的索引值,并遞歸往下構建
        $rightIndex = $this->rightChildIndex($treeIndex);
        $this->build($rightIndex, $mid + 1, $max);

        // 非葉子結點的值保留的是它下面所有結點的相加值, 這里可以改為它下面結點的總和值
        $this->tree[$treeIndex] = $this->tree[$leftIndex] . '+' . $this->tree[$rightIndex];
    }

    /**
     * 打印線段樹
     */
    public function varDump()
    {
        ksort($this->tree);
        print_r($this->tree);
    }

    /**
     * 獲取線段樹的長度
     * @return int
     */
    public function getSize(): int
    {
        return count($this->tree);
    }

    /**
     * 獲取左兒子索引
     * @param int $parentIndex
     * @return int
     * @throws \Exception
     */
    public function leftChildIndex(int $parentIndex): int
    {
        if ($parentIndex < 0) throw new \Exception('父結點的索引不能小于0');
        return $parentIndex * 2 + 1;
    }

    /**
     * 獲取右兒子索引
     * @param int $parentIndex
     * @return int
     * @throws \Exception
     */
    public function rightChildIndex(int $parentIndex): int
    {
        if ($parentIndex < 0) throw new \Exception('父結點的索引不能小于0');
        return $parentIndex * 2 + 2;
    }
}

5.示例

<?php
require_once __DIR__ . '/../../vendor/autoload.php';
$array = new ArrayBundleBaseArray();
for ($i = 0; $i < 10; $i++) {
 $array->addLast($i + 10);
}
$heap = new HeapBundleSegmentTreeHeap($array);
$heap->varDump();
Array
(
    [0] => 10+11+12+13+14+15+16+17+18+19
    [1] => 10+11+12+13+14
    [2] => 15+16+17+18+19
    [3] => 10+11+12
    [4] => 13+14
    [5] => 15+16+17
    [6] => 18+19
    [7] => 10+11
    [8] => 12
    [9] => 13
    [10] => 14
    [11] => 15+16
    [12] => 17
    [13] => 18
    [14] => 19
    [15] => 10
    [16] => 11
    [23] => 15
    [24] => 16
)

感謝各位的閱讀,以上就是“PHP怎么實現線段樹”的內容了,經過本文的學習后,相信大家對PHP怎么實現線段樹這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

体育| 淳化县| 万山特区| 贵阳市| 师宗县| 射洪县| 苏尼特右旗| 五华县| 岳西县| 汉源县| 长春市| 信阳市| 本溪| 英超| 交城县| 广昌县| 三门峡市| 城步| 洛隆县| 高邑县| 墨玉县| 望都县| 宜川县| 九龙县| 内江市| 惠安县| 福州市| 临汾市| 三台县| 泰和县| 喀喇沁旗| 精河县| 陆河县| 嵊州市| 闻喜县| 吴忠市| 平和县| 弥渡县| 拜泉县| 临桂县| 红桥区|