亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

php冒泡排序法如何處理鏈表排序

PHP
小樊
82
2024-10-14 02:42:45
欄目: 編程語言

在PHP中,冒泡排序法可以用于對鏈表進行排序。以下是一個使用冒泡排序法對鏈表進行排序的示例:

首先,我們需要創建一個鏈表數據結構。這里我們使用一個簡單的類來表示鏈表的節點:

class ListNode {
    public $value;
    public $next;

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

接下來,我們實現冒泡排序法對鏈表進行排序的函數:

function bubbleSortLinkedList(ListNode $head): ListNode {
    if ($head === null || $head->next === null) {
        return $head;
    }

    $length = 0;
    $current = $head;
    while ($current !== null) {
        $length++;
        $current = $current->next;
    }

    for ($i = 0; $i < $length - 1; $i++) {
        $current = $head;
        for ($j = 0; $j < $length - 1 - $i; $j++) {
            if ($current->value > $current->next->value) {
                // 交換兩個節點的值
                $temp = $current->value;
                $current->value = $current->next->value;
                $current->next->value = $temp;
            }
            $current = $current->next;
        }
    }

    return $head;
}

現在,我們可以創建一個鏈表并使用冒泡排序法對其進行排序:

// 創建鏈表 4 -> 2 -> 1 -> 3
$head = new ListNode(4);
$head->next = new ListNode(2);
$head->next->next = new ListNode(1);
$head->next->next->next = new ListNode(3);

// 對鏈表進行排序
$sortedHead = bubbleSortLinkedList($head);

// 打印排序后的鏈表
$current = $sortedHead;
while ($current !== null) {
    echo $current->value . ' -> ';
    $current = $current->next;
}
echo 'null';

輸出結果:

1 -> 2 -> 3 -> 4 -> null

這樣,我們就使用冒泡排序法對鏈表進行了排序。

0
呈贡县| 宣城市| 江华| 汽车| 高邑县| 巴马| 吴川市| 诏安县| 洪洞县| 从江县| 石首市| 木兰县| 岫岩| 武汉市| 祥云县| 平谷区| 抚州市| 赤壁市| 钟山县| 渭南市| 道孚县| 丹凤县| 奎屯市| 威宁| 高邑县| 鲜城| 于田县| 民丰县| 博罗县| 启东市| 金平| 原阳县| 姜堰市| 扎囊县| 龙门县| 抚顺县| 蓬溪县| 敦化市| 鄂尔多斯市| 德兴市| 屏山县|