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

怎么在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://www.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天堂| 欧美香蕉视频播放二区| 亚洲欧美一区二区色慰| 午夜精品久久99蜜桃| av免费观看一区二区三区| 亚洲小说欧美激情另类| 久久久精品国产亚洲av色哟哟| 中文字幕免费不卡一区| 强d乱码中文字幕在线| 久久亚洲一区二区内射| 国产饥渴熟女在线三区| 91免费人成网站在线观看| 亚洲高清中文字幕一区二三区| 精品国产一区二区三级四区| 久久精品国产久精国产爱| 国产成人一区二区二区三区| 国产精品人成在线观看不卡| 日本区一区二区三高清视频| 日韩人妻精品中文字幕专区不卡| 久久精品噜噜噜成人av农村| 日韩精品日本道欧美黄片| 蜜臀视频网站在线观看| 欧美日韩亚洲视频一区久久| 精品人妻少妇一区二区三| 高清美女视频亚洲免费| 精品成人乱色一区二区| 日本加勒比不卡在线视频| 国产精品亚洲二区三区| 亚洲大片色一区在线观看| 漂亮人妻被中出中文字幕| 精品三级黄色国产片| 夫妻晚上同房太猛视频| 日本精品免费专区在线观看| 久久精品国产av一一区| 色婷婷亚洲婷婷亚洲最大| 最新中文字幕人妻少妇| 日韩欧美高清一区二区三区| 在线看日本十八禁网站| 亚洲综合激情另类专区| 久久96国产精品久久久|