search
HomeBackend DevelopmentPHP ProblemDetailed introduction to Data Structures extension in php

Because arrays are too powerful in PHP, these data structures are included, so there is no need to pay attention to these data structures, and these concepts will fade over time. There is an extension in PHP called Data Structures, which includes these common data structures. Let’s introduce it today.

Detailed introduction to Data Structures extension in php

In PHP, because arrays are too powerful, these data structures are included, so there is no need to pay attention to these data structures, and these concepts will fade over time. , does not mean that there are no data structures in PHP.

There is an extension Data Structures in PHP, which includes these common data structures.

PHP Data Structure

  • Priority QueuePriorityQueue

  • Double-ended QueueDeque

  • Queue FIFO (first in, first out)

  • Stack LIFO (first in, last out)

  • Hash table Hash

  • Set Collection
  • Map Dictionary

Data Structure Introduction

Priority QueuePriorityQueue

PriorityQueue is very similar to Queue. Values ​​are pushed into the queue with the specified priority, and the value with the highest priority will always be at the front of the queue.

Note

  • For values ​​with the same priority, the "first in, first out" order is preserved.

  • Iterating PriorityQueue is destructive and is equivalent to continuous pop operations until the queue is empty.

Set capacity

The default capacity is 8, you can set the capacity manually. This capacity does not refer to the length of the queue, but to the storage space. Make sure there is enough memory when reallocating capacity

If the value is less than or equal to the current capacity, the capacity will remain unchanged.

$queue = new Ds\PriorityQueue(); 
$queue->allocate(8);

Get capacity

When the capacity is currently set manually, if the set capacity is greater than the actual occupied capacity, the set capacity will be returned. Otherwise, the actual capacity is returned.

$queue = new Ds\PriorityQueue(); 
// 此时返回默认值 8
$queue->capacity();

Set priority

The larger the value, the higher the priority

$queue = new Ds\PriorityQueue(); 
$queue->push('value1', 1);
$queue->push('value2', 2);

Example

$queue = new Ds\PriorityQueue(); 
$queue->push('沙僧', 2);
$queue->push('唐僧', 5);
$queue->push('白龙马', 1);
$queue->push('猪八戒', 3);
$queue->push('孙悟空', 4);
$cout = $queue->count();
for($i=0; $ipop();
  echo PHP_EOL;
}

Output

唐僧
孙悟空
猪八戒
沙僧
白龙马

Application scenario

  • MySQL In order to speed up the query and avoid sorting without using the index, sorting was not performed and manual sorting was performed at the server code level before returning.

  • Other application scenarios...

Double-ended queue Deque

has two pointers pointing to the head and tail respectively . Insertion and ejection can be performed at the head and tail respectively.

Advantages

  • Supports array syntax (square brackets).

  • Uses less memory than an array for the same number of values.

  • Automatically free allocated memory when its size drops low enough.

  • get(), set(), push(), pop(), shift() and unshift() are all O(1).

Disadvantages

  • The set capacity value must be a power of 2, and the default value is 8. For example, 2^2

  • insert() and remove() are O(n).

Class method description

Double-ended queueDeque

Example

$deque = new Ds\Deque();
$deque->push(...['唐僧', '孙悟空', '猪八戒', '沙僧', '白龙马']);
$clone = $deque->copy();
$count = $deque->count();
echo '头:'.$deque->first().PHP_EOL;
echo '尾:'.$deque->last().PHP_EOL;
echo '--- 从队尾开始 ----'.PHP_EOL;
for($i=0; $ipop();
    echo PHP_EOL;
}

echo '--- 从队头开始 ----'.PHP_EOL;
for($i=0; $ishift();
    echo PHP_EOL;
}

Output

头:唐僧
尾:白龙马
--- 从队尾开始 ----
白龙马
沙僧
猪八戒
孙悟空
唐僧
--- 从队头开始 ----
唐僧
孙悟空
猪八戒
沙僧
白龙马

Application scenario

  • Multiple application scenarios

Queue FIFO (first in, first out)

The queue is a "first in, first out" or "FIFO" collection, which only allows Access the value at the front of the queue.

Example

$queue = new Ds\Queue(); 
$queue->push('唐僧');
$queue->push(...['孙悟空', '猪八戒']);
$queue->push(['沙僧', '白龙马']);
print_r($queue);

Output

Ds\Queue Object
(
    [0] => 唐僧
    [1] => 孙悟空
    [2] => 猪八戒
    [3] => Array
        (
            [0] => 沙僧
            [1] => 白龙马
        )
)

Stack LIFO (First In, Last Out)

Stack is a "last in first out" or "LIFO" collection that Only the value at the top of the structure is allowed to be accessed.

Example

$Stack = new Ds\Stack(); 
$Stack->push('唐僧');
$Stack->push(...['孙悟空', '猪八戒']);
$Stack->push(...['沙僧', '白龙马']);

$cout = $Stack->count();
for($i=0; $ipop();
    echo PHP_EOL;
}

Output

白龙马
沙僧
猪八戒
孙悟空
唐僧

Map Dictionary

Map is a sequential collection of key-value pairs [key=>value], similar to an array. Keys can be of any type but must be unique. If values ​​are added to the map using the same key, the later addition will replace the previous value.

Advantages

  • Keys and values ​​can be of any type, including objects

  • Supports array syntax.

  • Preserve insertion order.

  • Performance and memory efficiency are similar to data.

  • Automatically free allocated memory when the size drops low enough.

Disadvantages

  • When an object is used as a key, it cannot be converted to an array.

Set Set

Set is a series of unique values. There is only one set of keys that do not store values, and the keys cannot be repeated.

Advantages

  • Values ​​can be of any type, including objects.

  • Supports array syntax.

  • Preserve insertion order.

  • Automatically free allocated memory when the size drops low enough.

  • The complexity of add(), remove() and contains() is O(1).

Disadvantages

  • Does not support push(), pop(), insert(), shift() or unshift()

  • If there is a deleted value in the buffer before the index being accessed, get() is O(n), otherwise it is O(1).

The difference between Map and Set

  • The storage methods are different. Map stores the form [key => value], and Set stores the form [...keys];

  • Map and Set both use keys to ensure orderliness. Therefore, modification of the key is not allowed.

Recommended learning: php video tutorial

The above is the detailed content of Detailed introduction to Data Structures extension in php. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.