php 数据结构之链表队列
发布:smiling 来源: PHP粉丝网 添加日期:2021-08-12 10:56:50 浏览: 评论:0
这篇文章主要介绍了php 数据结构之链表队列的相关资料,希望通过本文能帮助到大家,需要的朋友可以参考下
php 链表队列
实例代码:
- class Queue{
- private $last;
- private $first;
- private $oldfirst;
- private static $n=0;
- public function __construct(){
- $this->last = null;
- $this->first = null;
- $this->oldfirst = null;
- }
- public function push($item){
- $this->oldfirst = $this->last;
- $this->last = new Node();
- $this->last->item = $item;
- $this->last->next = null;
- if(emptyempty($this->first)){
- $this->first = $this->last;
- }else{
- $this->oldfirst->next = $this->last;
- }
- self::$n++;
- }
- public function pop(){
- if(self::$n<0){
- return null;
- }
- $item = $this->first->item;
- $this->first = $this->first->next;
- self::$n--;
- return $item;
- }
- }
- class Node{
- public $item;
- public $next;
- }
- $Queue = new Queue();
- $Queue->push("a");
- $Queue->push("b");
- $Queue->push("c");
- echo $Queue->pop().PHP_EOL;
- echo $Queue->pop().PHP_EOL;
- echo $Queue->pop().PHP_EOL;
- echo $Queue->pop().PHP_EOL;
Tags: php数据结构 php链表队列
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)