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

怎么在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剧情免费在线观看| 一本久道久久综合久久鬼色| 天堂久久天堂av色综合| 亚洲精品一区二区毛豆| 亚洲一区二区三区av电影| 欧美日韩三级性生活水平| 精品人妻日韩中文字幕| 成人久久精品一区二区| 亚洲女优中文字幕在线免费| 91亚洲蜜臀精品国产| 成人黄色一级电影免费看| 男人的天堂av东京热一区| 亚洲精品尤物福利在线一区| 91亚洲蜜臀精品国产| 91av国产一区二区| 亚洲国产一区二区高清| 亚洲国产专区一区二区麻豆| 成年免费视频一区二区三区| 亚洲全乱码精品一区二区| 亚洲中文乱码一区二区| 精品欧美日韩国产一区| 在线一区二区三区高清视频| 蜜桃一区二区三区免费| 亚洲精品一区二区免费看| 日本激情精品在线观看| 日韩欧美乱码一区二区| 亚洲少妇插进去综合网| 国产又粗又硬又长又爽在线观看| 97免费在线视频观看| 欧美日韩午夜久久免费| 午夜看片福利欧美熟女| 在线免费观看日韩黄片| 特级特色生活片免费看| 国产亚洲欧美成人精品久久| 欧美日韩福利一区二区三区| 麻豆一区二区人妻网站| 9热在线视频精品这里只有| 欧美日韩亚洲国产精品视频| 亚洲免费av一区二区| 内射极品美女在线观看|