PHP小教程之实现链表


Posted in PHP onJune 09, 2014

看了很久数据结构但是没有怎么用过,在网上看到了关于PHP的数据结构,学习了一下,与大家一起分享一下。

class Hero
{
    public $no;//排名
    public $name;//名字
    public $next=null;//$next是一个引用,指向另外一个Hero的对象实例    public function __construct($no='',$name='')
    {
        $this->no=$no;
        $this->name=$name;
    }
    static public function showList($head)
    {
        $cur = $head;
        while($cur->next!=null)
        {
            echo "排名:".$cur->next->no.",名字:".$cur->next->name."<br>";
            $cur = $cur->next;
        }
    }
    //普通插入
    static public function addHero($head,$hero)
    {
        $cur = $head;
        while($cur->next!=null)
        {
            $cur = $cur->next;
        }
        $cur->next=$hero;
    }
    //有序的链表的插入  
    static public function addHeroSorted($head,$hero)
    {
        $cur = $head;
        $addNo = $hero->no;
        while($cur->next->no <= $addNo)
        {
            $cur = $cur->next;
        }
        /*$tep = new Hero();
        $tep = $cur->next;
        $cur->next = $hero;
        $hero->next =$tep;*/
        $hero->next=$cur->next;
        $cur->next=$hero;
    }
    static public function deleteHero($head,$no)
    {
        $cur = $head;
        while($cur->next->no != $no && $cur->next!= null)
        {
            $cur = $cur->next;
        }
        if($cur->next->no != null)
        {
            $cur->next = $cur->next->next;
            echo "删除成功<br>"; 
        }
        else
        {
            echo "没有找到<br>"; 
        }
    }
    static public function updateHero($head,$hero)
    {
        $cur = $head;
        while($cur->next->no != $hero->no && $cur->next!= null)
        {
            $cur = $cur->next;
        }
        if($cur->next->no != null)
        {
            $hero->next = $cur->next->next;
            $cur->next = $hero;
            echo "更改成功<br>"; 
        }
        else
        {
            echo "没有找到<br>"; 
        }
    }
}

//创建head头
$head = new Hero();
//第一个
$hero = new Hero(1,'111');
//连接
$head->next = $hero;
//第二个
$hero2 = new Hero(3,'333');
//连接
Hero::addHero($head,$hero2);
$hero3 = new Hero(2,'222');
Hero::addHeroSorted($head,$hero3);
//显示
Hero::showlist($head);
//删除
Hero::deleteHero($head,4);
//显示
Hero::showlist($head);
//更改
$hero4=new Hero(2,'xxx');
Hero::updateHero($head,$hero4);
//显示
Hero::showlist($head);

有序的插入的话需要遍历一遍链表,链表的一些知识就不介绍了哈。这里主要分享一下代码。

PHP 相关文章推荐
队列在编程中的实际应用(php)
Sep 04 PHP
解析php curl_setopt 函数的相关应用及介绍
Jun 17 PHP
如何给phpcms v9增加类似于phpcms 2008中的关键词表
Jul 01 PHP
PHP中preg_match正则匹配中的/u、/i、/s含义
Apr 17 PHP
Apache服务器下防止图片盗链的办法
Jul 06 PHP
学习php设计模式 php实现策略模式(strategy)
Dec 07 PHP
PHP mysql事务问题实例分析
Jan 18 PHP
Zend Framework教程之连接数据库并执行增删查的方法(附demo源码下载)
Mar 21 PHP
PHP简单实现文本计数器的方法
Apr 28 PHP
THINKPHP在添加数据的时候获取主键id的值方法
Apr 03 PHP
老生常谈PHP数组函数array_merge(必看篇)
May 25 PHP
阿里对象存储OSS在laravel框架中的使用方法
Oct 13 PHP
浅谈Eclipse PDT调试PHP程序
Jun 09 #PHP
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
Jun 09 #PHP
PHP、Nginx、Apache中禁止网页被iframe引用的方法
Oct 01 #PHP
PHP遍历目录并返回统计目录大小
Jun 09 #PHP
php中替换字符串中的空格为逗号','的方法
Jun 09 #PHP
使用php批量删除数据库下所有前缀为prefix_的表
Jun 09 #PHP
PHP OPP机制和模式简介(抽象类、接口和契约式编程)
Jun 09 #PHP
You might like
php auth_http类库进行身份效验
2009/03/19 PHP
使用php shell命令合并图片的代码
2011/06/23 PHP
浅析PHP文件下载原理
2014/12/25 PHP
PHP 返回13位时间戳的实现代码
2016/05/13 PHP
laravel 5.1下php artisan migrate的使用注意事项总结
2017/06/07 PHP
laravel中的一些简单实用功能
2018/11/03 PHP
火狐浏览器(firefox)下获得Event对象以及keyCode
2008/11/13 Javascript
兼容ie、firefox的图片自动缩放的css跟js代码分享
2012/01/21 Javascript
JS获得QQ号码的昵称,头像,生日的简单实例
2013/12/04 Javascript
用js读、写、删除Cookie代码分享及详细注释说明
2014/06/05 Javascript
javascript简单判断输入内容是否合法的方法
2016/05/11 Javascript
详解Vue中localstorage和sessionstorage的使用
2017/12/22 Javascript
vue 设置proxyTable参数进行代理跨域
2018/04/09 Javascript
微信小程序异步API为Promise简化异步编程的操作方法
2018/08/14 Javascript
js 解析 JSON 数据简单示例
2020/04/21 Javascript
vue-cli+webpack项目打包到服务器后,ttf字体找不到的解决操作
2020/08/28 Javascript
利用Python的Flask框架来构建一个简单的数字商品支付解决方案
2015/03/31 Python
python实现SOM算法
2018/02/23 Python
python 拼接文件路径的方法
2018/10/23 Python
python ipset管理 增删白名单的方法
2019/01/14 Python
python树莓派红外反射传感器
2019/01/21 Python
Python3使用xml.dom.minidom和xml.etree模块儿解析xml文件封装函数的方法
2019/09/23 Python
解决Python import .pyd 可能遇到路径的问题
2021/03/04 Python
乌克兰移动电子产品和相关配件的在线商店:iTMag
2020/03/16 全球购物
Farfetch巴西官网:奢侈品牌时尚购物平台
2020/10/19 全球购物
Ibatis的核心配置文件都有什么
2014/09/08 面试题
《回乡偶书》教学反思
2014/04/12 职场文书
《明天,我们毕业》教学反思
2014/04/24 职场文书
广播体操口号
2014/06/18 职场文书
志愿者活动总结报告
2014/06/27 职场文书
父亲节活动策划方案
2014/08/24 职场文书
面试感谢信范文
2015/01/22 职场文书
董事长岗位职责
2015/02/13 职场文书
高中生综合素质自我评价
2015/03/06 职场文书
2016年12月份红领巾广播稿
2015/12/21 职场文书
MySQL一劳永逸永久支持输入中文的方法实例
2022/08/05 MySQL