欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

怎么在php項(xiàng)目中實(shí)現(xiàn)一個(gè)單鏈表功能-創(chuàng)新互聯(lián)

這篇文章給大家介紹怎么在php項(xiàng)目中實(shí)現(xiàn)一個(gè)單鏈表功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

創(chuàng)新互聯(lián)建站專(zhuān)注于企業(yè)全網(wǎng)整合營(yíng)銷(xiāo)推廣、網(wǎng)站重做改版、工布江達(dá)網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5場(chǎng)景定制商城系統(tǒng)網(wǎng)站開(kāi)發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性?xún)r(jià)比高,為工布江達(dá)等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。

復(fù)制代碼 代碼如下:


<?php

//鏈表節(jié)點(diǎn)
class node {
    public $id; //節(jié)點(diǎn)id
    public $name; //節(jié)點(diǎn)名稱(chēng)
    public $next; //下一節(jié)點(diǎn)

    public function __construct($id, $name) {
        $this->id = $id;
        $this->name = $name;
        $this->next = null;
    }
}

//單鏈表
class singelLinkList {
    private $header; //鏈表頭節(jié)點(diǎn)

    //構(gòu)造方法
    public function __construct($id = null, $name = null) {
        $this->header = new node ( $id, $name, null );
    }

    //獲取鏈表長(zhǎng)度
    public function getLinkLength() {
        $i = 0;
        $current = $this->header;
        while ( $current->next != null ) {
            $i ++;
            $current = $current->next;
        }
        return $i;
    }

    //添加節(jié)點(diǎn)數(shù)據(jù)
    public function addLink($node) {
        $current = $this->header;
        while ( $current->next != null ) {
            if ($current->next->id > $node->id) {
                break;
            }
            $current = $current->next;
        }
        $node->next = $current->next;
        $current->next = $node;
    }

    //刪除鏈表節(jié)點(diǎn)
    public function delLink($id) {
        $current = $this->header;
        $flag = false;
        while ( $current->next != null ) {
            if ($current->next->id == $id) {
                $flag = true;
                break;
            }
            $current = $current->next;
        }
        if ($flag) {
            $current->next = $current->next->next;
        } else {
            echo "未找到id=" . $id . "的節(jié)點(diǎn)!<br>";
        }
    }

    //獲取鏈表
    public function getLinkList() {
        $current = $this->header;
        if ($current->next == null) {
            echo ("鏈表為空!");
            return;
        }
        while ( $current->next != null ) {
            echo 'id:' . $current->next->id . '   name:' . $current->next->name . "<br>";
            if ($current->next->next == null) {
                break;
            }
            $current = $current->next;
        }
    }

    //獲取節(jié)點(diǎn)名字
    public function getLinkNameById($id) {
        $current = $this->header;
        if ($current->next == null) {
            echo "鏈表為空!";
            return;
        }
        while ( $current->next != null ) {
            if ($current->id == $id) {
                break;
            }
            $current = $current->next;
        }
        return $current->name;
    }

    //更新節(jié)點(diǎn)名稱(chēng)
    public function updateLink($id, $name) {
        $current = $this->header;
        if ($current->next == null) {
            echo "鏈表為空!";
            return;
        }
        while ( $current->next != null ) {
            if ($current->id == $id) {
                break;
            }
            $current = $current->next;
        }
        return $current->name = $name;
    }
}

$lists = new singelLinkList ();
$lists->addLink ( new node ( 5, 'eeeeee' ) );
$lists->addLink ( new node ( 1, 'aaaaaa' ) );
$lists->addLink ( new node ( 6, 'ffffff' ) );
$lists->addLink ( new node ( 4, 'dddddd' ) );
$lists->addLink ( new node ( 3, 'cccccc' ) );
$lists->addLink ( new node ( 2, 'bbbbbb' ) );
$lists->getLinkList ();
echo "<br>-----------刪除節(jié)點(diǎn)--------------<br>";
$lists->delLink ( 5 );
$lists->getLinkList ();

echo "<br>-----------更新節(jié)點(diǎn)名稱(chēng)--------------<br>";
$lists->updateLink ( 3, "222222" );
$lists->getLinkList ();

echo "<br>-----------獲取節(jié)點(diǎn)名稱(chēng)--------------<br>";
echo $lists->getLinkNameById ( 5 );

echo "<br>-----------獲取鏈表長(zhǎng)度--------------<br>";
echo $lists->getLinkLength ();
?>


關(guān)于怎么在php項(xiàng)目中實(shí)現(xiàn)一個(gè)單鏈表功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

新聞名稱(chēng):怎么在php項(xiàng)目中實(shí)現(xiàn)一個(gè)單鏈表功能-創(chuàng)新互聯(lián)
分享路徑:http://aaarwkj.com/article24/ccddce.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、小程序開(kāi)發(fā)、企業(yè)建站、網(wǎng)站改版、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、網(wǎng)站營(yíng)銷(xiāo)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站建設(shè)
人人妻人人澡人人妻| 久久精品国产亚洲夜色av网站 | 日韩中文字幕在线首页| 国产黄色一区二区三区四区| 18禁黄网站禁片免费视频| 99精品国产中文字幕| 99久久免费中文字幕| 国产在线一区二区三区观看 | 日本一区二区电影在线看| 国产精品日韩欧美一区二区| 国产三级在线视频不卡| 国产精品久久久毛片av| 91国产自拍在线视频| 亚洲国产av永久精品成人| 国产成人在线观看av| 国产精品九九久久精品女同| 久久91亚洲精品中文字幕| 亚洲午夜一区二区三区精品| 国内精品人妻中文字幕| 亚洲精品色在线网站国产呦| 亚洲日本香蕉视频观看视频| 国产原创av剧情在线播放| 男女性视频在线免费观看| 午夜激情视频在线网站| 成年人午夜看片免费网站| 国产精品中文字幕第一区| 精品少妇人妻av免费久久久| 免费观看毛片一区二区三区| 九九视频在线精品免费观看| 无遮挡动漫网站免费观看| 懂色粉嫩蜜臀久久一区二区| av免费在线不卡观看| 国产黄片大秀在线观看| 国产亚洲一区二区高清| 亚洲国产韩国精品在线| 91九色国产在线视频| 亚洲一区欧美日韩91| 人妻少妇久久中文字幕久久| 久久精品熟女亚洲av韩国| 亚洲欧美日韩国产桃色| 成人av免费高清在线播放|