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

溫馨提示×

溫馨提示×

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

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

數據結構之隊列——鏈式存儲結構(php代碼實現)

發布時間:2020-03-19 11:50:47 來源:網絡 閱讀:550 作者:great_yonchin 欄目:web開發
<?php

class QNode{
    public  $data;
    public  $next;
    public function __construct($data){
        $this->data=$data;
        $this->next=null;
    }
}

class LinkQueue{ //鏈隊列包含頭結點,實例化時,此隊列為空
    private $data;
    private $next;
    private $front;//指向頭結點
    private $rear;//指向尾結點
//    private $length;
    public function __construct(){
        $this->data=null;
        $this->next=null;
        $this->front=$this; //指向頭結點
        $this->rear=$this;//指向頭結點
//        $this->length=0;
    }

    //銷毀隊列
    public function DestroyQueue(){
        while($this->front){ //銷毀首先是從頭結點開始
            $this->rear=$this->front->next;
            unset($this->front);
            $this->front=$this->rear;
        }
    }

    //清空隊列
    public function ClearQueue(){
        $p=$this->front->next;
        while($p){
            $q=$p->next;
            unset($p);
            $p=$q;
        }
        $this->front->next=null;
        $this->rear=$this->front;
    }

    //隊列是否為空
    public function QueueEmpty(){
        if($this->front==$this->rear){
            return 'Null';
        }else{
            return 'No Null';
        }
    }

    //隊列的長度
    public function QueueLength(){
        $p=$this->front;
        $i=0;
        while($p != $this->rear){
            $i++;
            $p=$p->next;
        }
        return $i;
//        return $this->length;
    }

    //取得隊頭元素
    public function GetHead(){
        if($this->front==$this->rear){
            return 'ERROR';
        }
        return $this->front->next->data;
    }

    //從隊尾插入元素
    public function EnQueue(){
        $node=new QNode(mt_rand(100,200));
        $node->next=$this->rear->next;
        $this->rear->next=$node;
        $this->rear=$node;
        $this->length++;
    }

    //從隊頭刪除元素
    public function DeQueue(){
        if($this->front==$this->rear){
            return 'ERROR';
        }
        $p=$this->front->next;
        unset($this->front->next);
        $this->front->next=$p->next;

        if($this->rear==$p){ //如果只有一個元素那么,為指針就需要變化了。
            $this->rear=$this->front;
        }
        $this->length--;
        return 'OK';
    }

    //遍歷隊列元素
    public function QueueTraverse(){
        if($this->front==$this->rear){
            return 'ERROR';
        }

        $arr=array();
        $p=$this->front->next;
        while($p){
            $arr[]=$p->data;
            $p=$p->next;
        }
        return $arr;
    }
}


向AI問一下細節

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

AI

玉田县| 顺昌县| 赤峰市| 南漳县| 麻城市| 静乐县| 银川市| 垦利县| 南和县| 霍邱县| 岑巩县| 健康| 普格县| 长子县| 永州市| 大宁县| 滁州市| 湘乡市| 宁南县| 象州县| 满城县| 苗栗县| 岐山县| 自贡市| 三台县| 湖州市| 南城县| 海门市| 庄河市| 靖远县| 沧州市| 江油市| 黑龙江省| 东至县| 宁蒗| 仁寿县| 新民市| 凤庆县| 和林格尔县| 银川市| 曲沃县|