PHP单链表的基本操作
前提
对于大多数的大一,大二的童鞋们来说,可能最操蛋的就是数据结构这个课了,什么链表,堆栈,队列,图,简直噩梦!对我也是,我也是在大三后实习后发现这个真的是个硬技能,
链表的实现
数据结构第一个就是链表了,链表分为两种有直接的数组形式的顺序链,这里不讨论,什么array_push(),array_pop(),函数基本能满足日常的需求,但报告老板,我就是想装个X
上代码吧
<?php/** *@author:gongbangwei(18829212319@163.com) *@version:1.0 *@date:2016-05-22 *单链表的基本操作 *1.初始化单链表 __construct() *2.清空单链表 clearSLL() *3.返回单链表长度 getLength() *4.判断单链表是否为空 getIsEmpty() *5.头插入法建表 getHeadCreateSLL() *6.尾插入法建表 getTailCreateSLL() *7.返回第$i个元素 getElemForPos() *8.查找单链表中是否存在某个值的元素 getElemIsExist() *9.单链表的插入操作 getInsertElem() *10.遍历单链表中的所有元素 getAllElem() *11.删除单链中第$i个元素 getDeleteElem() *12.删除单链表所有重复的值 getElemUnique() **/ header("content-type:text/html;charset=UTF-8"); class LNode{ public $mElem; public $mNext; public function __construct(){ $this->mElem=null; $this->mNext=null; }}class SingleLinkedList{ //头结点数据 public $mElem; //下一结点指针 public $mNext; //单链表长度 public static $mLength=0; public function __construct(){ $this->mElem=null; $this->mNext=null; } //返回单链表长度 public static function getLength(){ return self::$mLength; } public function getIsEmpty(){ if(self::$mLength==0 && $this->mNext==null){ return true; } else{ return false; } } public function clearSLL(){ if(self::$mLength>0){ while($this->mNext!=null){ $q=$this->mNext->mNext; $this->mNext=null; unset($this->mNext); $this->mNext=$q; } self::$mLength=0; } } public function getHeadCreateSLL($sarr){ $this->clearSLL(); if(is_array($sarr) and count($sarr)>0){ foreach ($sarr as $key => $value) { $p= new LNode; $p->mElem=$value; $p->mNext=$this->mNext; $this->mNext=$p; self::$mLength++; } } else{ return false; } return true; } public function getTailCreateSLL($sarr){ $this->clearSLL(); if(is_array($sarr) and count($sarr)>0){ $q=$this; foreach($sarr as $value){ $p=new LNode; $p->mElem=$value; $p->mNext=$q->mNext; $q->mNext=$p; $q=$p; self::$mLength++; } } else{ return false; } } public function getElemForPos($i){ if(is_numeric($i) && $i<self::$mLength && $i>0){ $p=$this->mNext; for ($j=1; $j < $i ; $j++) { $q=$p->mNext; $p=$q; } return $p->mElem; } else{ return null; } } public function getElemIsExist($value){ if($value){ $p=$this; while($p->mNext!=null and $p->mElem!=value){ $q=$p->mNext; $p=$q; } if($p->mElem==value){ return true; } else{ return false; } } } public function getElemPosition($value){ if($value){ $p=$this; $pos=0; while($p->mNext!=null and $p->mElem!=$value){ $q=$p->mNext; $p=$q; $pos++; } if($p->mElem==$value){ return $pos; } else{ return -1; } } } /*单链表的插入操作 * *@param int $i 插入元素的位序,即在什么位置插入新的元素,从1开始 *@param mixed $e 插入的新的元素值 *@return boolean 插入成功返回true,失败返回false */ public function getInsertElem($i,$e){ if($i<self::$mLength){ $j=1; $p=$this; } else{ return false; } while($p->mNext!=null and $j<$i){ $q=$p->mNext; $p=$q; $j++; } $q=new LNode; $q->mElem=$e; $q->mNext=$p->mNext; $p->mNext=$q; self::$mLength++; return true; } /** *删除单链中第$i个元素 *@param int $i 元素位序 *@return boolean 删除成功返回true,失败返回false */ public function getDeleteElem($i){ if($i>self::$mLength || $i<1){ return false; } else{ $p=$this; $j=1; while($j<$i){ $p=$p->mNext; $j++; } $q=$p->mNext; $p->mNext=$q->mNext; unset($q); self::$mLength--; return true; } } public function getAllElem(){ $all=array(); if(!$this->getIsEmpty()){ $p=$this->mNext; while($p->mNext){ $all[]=$p->mElem; $p=$p->mNext; } if($p->mElem) $all[]=$p->mElem; return $all; } } public function getElemUnique(){ if(!$this->getIsEmpty()){ $p=$this; while($p->mNext!=null){ $q=$p->mNext; $ptr=$p; while($q->mNext!=null){ if(strcmp($p->mElem,$q->mElem)===0){ $ptr->mNext=$q->mNext; $q->mNext=null; unset($q->mNext); $q=$ptr->mNext; self::$mLength--; } else{ $ptr=$q; $q=$q->mNext; } } //处理最后一个元素 if(strcmp($p->mElem,$q->mElem)===0){ $ptr->mNext=null; self::$mLength--; } $p=$p->mNext; }//end of while } }}///////////////test//////////$node=new SingleLinkedList;$arr=array('gbw','michael','php','js');//$node->getHeadCreateSLL($arr);//print_r($node->getAllElem());$node->getTailCreateSLL($arr);echo $node->getElemForPos(2);$pos=$node->getElemPosition('gbw');echo $pos;$node->getDeleteElem($pos);$node->getInsertElem(1,'gbw2');print_r($node->getAllElem());
希望对大家的php程序设计有所帮助!

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











PHP 로깅은 웹 애플리케이션을 모니터링하고 디버깅하고 중요한 이벤트, 오류 및 런타임 동작을 캡처하는 데 필수적입니다. 시스템 성능에 대한 귀중한 통찰력을 제공하고 문제를 식별하며 더 빠른 문제 해결을 지원합니다.

Laravel은 직관적 인 플래시 방법을 사용하여 임시 세션 데이터 처리를 단순화합니다. 응용 프로그램에 간단한 메시지, 경고 또는 알림을 표시하는 데 적합합니다. 데이터는 기본적으로 후속 요청에만 지속됩니다. $ 요청-

PHP 클라이언트 URL (CURL) 확장자는 개발자를위한 강력한 도구이며 원격 서버 및 REST API와의 원활한 상호 작용을 가능하게합니다. PHP CURL은 존경받는 다중 프로모토콜 파일 전송 라이브러리 인 Libcurl을 활용하여 효율적인 execu를 용이하게합니다.

Laravel은 간결한 HTTP 응답 시뮬레이션 구문을 제공하여 HTTP 상호 작용 테스트를 단순화합니다. 이 접근법은 테스트 시뮬레이션을보다 직관적으로 만들면서 코드 중복성을 크게 줄입니다. 기본 구현은 다양한 응답 유형 단축키를 제공합니다. Illuminate \ support \ Facades \ http를 사용하십시오. http :: 가짜 ([ 'google.com'=> 'Hello World', 'github.com'=> [ 'foo'=> 'bar'], 'forge.laravel.com'=>

고객의 가장 긴급한 문제에 실시간 인스턴트 솔루션을 제공하고 싶습니까? 라이브 채팅을 통해 고객과 실시간 대화를 나누고 문제를 즉시 해결할 수 있습니다. 그것은 당신이 당신의 관습에 더 빠른 서비스를 제공 할 수 있도록합니다.

Alipay PHP ...

기사는 PHP 5.3에 도입 된 PHP의 LSB (Late STATIC BING)에 대해 논의하여 정적 방법의 런타임 해상도가보다 유연한 상속을 요구할 수있게한다. LSB의 실제 응용 프로그램 및 잠재적 성능

이 기사에서는 프레임 워크에 사용자 정의 기능 추가, 아키텍처 이해, 확장 지점 식별 및 통합 및 디버깅을위한 모범 사례에 중점을 둡니다.
