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(empty($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;
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
PHP有序表查找之插值查找算法示例这篇文章主要介绍了PHP有序表查找之插值查找算法,简单分析了插值查找算法的概念、原理并结合实例形式分析了php实
ThinkPHP整合datatables实现服务端分页的示例代码下面小编就为大家分享一篇ThinkPHP整合datatables实现服务端分页的示例代码,具有很好的参考价值,希望对大家有所帮
PHP实现APP微信支付的实例讲解下面小编就为大家分享一篇PHP实现APP微信支付的实例讲解,具有很好的参考价值,希望对大家有所帮助。一起跟随小
PHP实现的多维数组排序算法分析这篇文章主要介绍了PHP实现的多维数组排序算法,结合实例形式对比分析了php针对多维数组及带有键名的多维数组进行
php+ajax实现无刷新文件上传功能(ajaxuploadfile)这篇文章主要为大家详细介绍了php结合ajaxuploadfile实现无刷新文件上传功能,具有一定的参考价值,感兴趣的小伙伴们
PHP的RSA加密解密方法以及开发接口使用本篇文章给大家详细介绍了PHP开发接口使用RSA进行加密解密方法,对此有兴趣的朋友可以学习下。