当前位置:Gxlcms > PHP教程 > php中SPL常用的数据结构详解

php中SPL常用的数据结构详解

时间:2021-07-01 10:21:17 帮助过:4人阅读

本文主要和大家分享php中SPL常用的数据结构详解,主要以代码的方式和大家分享,希望能帮助到大家。

本文栈【先进后出】

<span style="font-size:18px;">$stack = new SplStack();  
$stack->push('data1');  
$stack->push('data2');  
$stack->push('data3');  
echo $stack->pop();  
  
//
输出结果为 //data3</span><span style="font-size:24px;font-weight: bold;"> </span>

2.队列【先进先出 后进后出】

<span style="font-size:18px;">$queue = new SplQueue();  
$queue->enqueue("data1");  
$queue->enqueue("data2");  
$queue->enqueue("data3");  
echo $queue->dequeue();  
//
输出结果为 //data1</span>

3.堆

<span style="font-size:18px;">$heap = new SplMinHeap();  
$heap->insert("data1");  
$heap->insert("data2");  
echo $heap->extract();  
//
输出结果为 //data1</span>

4.固定尺寸数组

<span style="font-size:18px;">$array = new SplFixedArray(5);  
$array[0]=1;  
$array[3]=3;  
$array[2]=2;  
var_dump($array);  
//
输出结果为 // object(SplFixedArray)[1] // public 0 => int 1 // public 1 => null // public 2 => int 2 // public 3 => int 3 // public 4 => null</span>

相关推荐:

js数据结构和算法之数组和散列表详解

javascript数据结构与算法详解

PHP实现栈数据结构和括号匹配

以上就是php中SPL常用的数据结构详解的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行