数据结构之线性表——链式存储结构之单链表(php代码实现)
admin
2023-06-30 02:03:04
0
data=$data;
        $this->next=null;
    }
}

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

    //具有$num个数据元素的单链表的创建——头插法
    public function CreateListHead($num){
        for($i=0;$i<$num;$i++){
            $node=new LNode();
            $node->data=mt_rand(100,200);
            $node->next=$this->next;
            $this->next=$node;
        }
    }
    //具有$num个数据元素的单链表的创建——尾插法
    public function CreateListTail($num){
        $tail=$this;
        for($i=0;$i<$num;$i++){
            $node=new LNode();
            $node->data=mt_rand(100,200);
            $tail->next=$node;
            $tail=$node;
        }
        $node->next=null;
    }

    //销毁单链表
    public function DestroyList(){
        //$this相当于头指针,它指向的是头结点,$this->next相当于第一个结点
        //之所以需要将$this赋值给$that,是因为$this无法用作变量进行赋值
        $that=$this;
        while($that){
            $node=$that->next;
            unset($that);
            $that=$node;
        }
    }
    //将单链表清空
    public function ClearList(){
        $p=$this->next;
        while($p){
            $node=$p->next;
            unset($node);
            $p=$node;
        }
        $this->next=null;
    }

    //判断单链表是否为空
    public function ListEmpty(){
        if($this->next){
            return false;
        }else{
            return true;
        }
    }

    //返回单链表中数据元素的个数
    public function ListLength(){
        $count=0;//初始化变量
        $p=$this->next;
        while($p){
            $count++;
            $p=$p->next;
        }
        return $count;
    }

    //返回指定位置的数据元素
    public function GetElem($pos){
        $count=1;
        $p=$this->next;
        while($p && $count<$pos){
            $count++;
            $p=$p->next;
        }
        if(!$p || $pos<$count){
            return 'ERROR';
        }
        return $p->data;
    }

//    或者
    public function GetElem2($pos){
        $count=0;
        $p=$this->next;
        while($p){
            $count++;
            if($count==$pos){
                return $p->data;
            }
            $p=$p->next;
        }
        return 'ERROR';
    }

    //查找指定元素在单链表中的位序
    public function LocateElem($elem){
        $count=0;
        $p=$this->next;
        while($p){
            $count++;
            if($p->data==$elem){
                return $count;
            }
        }
        return 'ERROR';
    }

    //获取指定元素的前面一个元素
    public function PriorElem($elem){
        $p=$this->next;
        if($p && $p->data=$elem){
            return $p->data.'已经是第一个元素,已无前驱元素';
        }
        while($p && $p->next){
            $q=$p->next;
            if($q->data==$elem){
                return $p->data;
            }
            $p=$q;
        }
        return 'ERROR';
    }

    //获取指定元素的后面一个元素
    public function NextElem($elem){
        $p=$this->next;
        while($p && $p->next){
            if($p->data==$elem){
                return $p->next->data;
            }
            $p=$p->next;
        }
        if($p && $p->next==null){
            return $p->data.'已经是最后一个元素,已无后继元素';
        }
        return 'ERROR';
    }

    //在指定位置之前插入一个节点元素
    public function ListInsert($pos,$node){
        $p=$this;
        $count=0;
        while($p) {
            $count++;
            if ($count == $pos) {
                $node->next = $p->next;
                $p->next = $node;
                return 'OK';
            }
            $p=$p->next;
        }
        return 'ERROR';
    }
    //或者 这种效率会高一些
    public function ListInsert2($pos,$node){
        $p=$this;
        $count=1;
        while($p && $count<$pos){
            $count++;
            $p=$p->next;
        }
        if(!$p || $count>$pos){
            return 'ERROR';
        }
        $node->next=$p->next;
        $p->next=$node;
        return 'OK';
    }
    //删除单链表指定位置的数据元素
    public function ListDelete($pos){
        $count=1;
        $p=$this;
        while($p && $count<$pos){
            $count++;
            $p=$p->next;
        }
        if(!$p || $count>$pos){
            return 'ERROR';
        }
        $q=$p->next;
        $p->next=$q->next;
        unset($q);
        return 'OK';
    }
//    或者
    public function ListDelete2($pos){
        $count=0;
        $p=$this;
        //此处之所以使用$p->next,而不是$p作为判断条件是因为这样可以在链表为空的时候,少一次无谓的循环。
        while($p->next){
            $count++;
            if($count==$pos){
                $q=$p->next;
                $p->next=$q->next;
                unset($q);
                return 'OK';
            }
            $p=$p->next;
        }
        return 'ERROR';
    }

    //单链表的遍历
    public function ListTraverse(){
        $arr=array();
        $p=$this->next;
        while($p){
            $arr[]=$p->data;
            $p=$p->next;
        }
        return $arr;
    }
}


相关内容

热门资讯

一颗流星在美国马萨诸塞州上空爆... 当地时间5月30日,一颗流星在美国东北部马萨诸塞州近海上空爆炸,并引发巨响。该州多地居民均听到爆炸声...
鸿蒙智家框架合作协议签约仪式在... 5月29日,鲁班兄弟装饰工程有限公司与华为终端有限公司在华为云南区域总部举行鸿蒙智家框架合作协议签约...
中国科学院工程热物理所在超临界... 以超临界二氧化碳(S-CO₂)为代表的新型超临界流体正以其独特优势,在制冷、发电、储能等领域拓展应用...
5月31日,“蓝月亮”上线 5月31日,农历四月十五,一轮满月将现身夜空。这轮满月有些特别,它是本月第二次满月,同时它又是本年度...
原创 华... 华为在6月份的新品越来越丰富,比如智能手机、智能手表、耳夹式耳机、新一代全屋智能等,覆盖到多场景。其...
伊朗称对霍尔木兹海峡航运实施全... 据伊朗方面当地时间5月30日消息,伊朗武装部队哈塔姆安比亚中央总部说,伊朗对霍尔木兹海峡航运实施全面...
13人遇难“致命黑车”调查:座... 5月28日凌晨,一辆载满河南邓州周边等地乘客的大通客车,从浙江杭州出发赶回邓州,经过G40沪陕高速河...
多地职校招生报名火爆 作者 | 第一财经 林靖职业教育正在成为越来越多人的“主动选择”,中职赛道不再是备选项。近日,北京中...
初一男生校门口遭群殴或失聪,教... 哥哥同学辱骂母亲,辽宁鞍山13岁少年在学校门口维护哥哥与人发生争执,随后数名同龄少年一拥而上对其实施...
演唱会大量邀请票被当众焚毁,警... 极目新闻记者 杜光然5月29日,网友发帖称,有人当众焚烧大量演唱会邀请票,视频定位于温岭市体育中心。...