PHP中的数据结构:DS扩展

  PHP7以上才能安装和使用该数据结构扩展,安装比较简单:

1. 运行命令 pecl install ds

2. 在php.ini中添加 extension=ds.so

3. 重启PHP或重载配置
  •  Collection Interface:包含本库中所有数据结构通用功能的基本interface。 It guarantees that all structures are traversable, countable, and can be converted to json using json_encode().

    Ds\Collection implements Traversable , Countable , JsonSerializable {
    /* 方法 */
    abstract public void clear ( void )
    abstract public Ds\Collection copy ( void )
    abstract public bool isEmpty ( void )
    abstract public array toArray ( void )
    }
  • Hashable Interface:which allows objects to be used as keys.

    Ds\Hashable {
    /* 方法 */
    abstract public bool equals ( object $obj )
    abstract public mixed hash ( void )
    }
  • Sequence Interface:A Sequence 相当于一个一维的数字key数组, with the exception of a few characteristics:
    • Values will always be indexed as [0, 1, 2, …, size - 1].
    • Only allowed to access values by index in the range [0, size - 1].

    Use cases:

    • Wherever you would use an array as a list (not concerned with keys).
    • A more efficient alternative to SplDoublyLinkedList and SplFixedArray.
  • Vector Class:Vector是自动增长和收缩的连续缓冲区中的一系列值。它是最有效的顺序结构,值的索引直接映射到缓冲区中索引,增长因子不绑定到特定的倍数或指数。其具有以下优缺点:
    • Supports array syntax (square brackets).
    • Uses less overall memory than an array for the same number of values.
    • Automatically frees allocated memory when its size drops low enough.
    • Capacity does not have to be a power of 2.
    • get(), set(), push(), pop() are all O(1).
    • 但是 shift(), unshift(), insert() and remove() are all O(n).
    Ds\Vector::allocate — Allocates enough memory for a required capacity.
    Ds\Vector::apply — Updates all values by applying a callback function to each value.
    Ds\Vector::capacity — Returns the current capacity.
    Ds\Vector::clear — Removes all values.
    Ds\Vector::__construct — Creates a new instance.
    Ds\Vector::contains — Determines if the vector contains given values.
    Ds\Vector::copy — Returns a shallow copy of the vector.
    Ds\Vector::count — Returns the number of values in the collection.
    Ds\Vector::filter — Creates a new vector using a callable to determine which values to include.
    Ds\Vector::find — Attempts to find a value‘s index.
    Ds\Vector::first — Returns the first value in the vector.
    Ds\Vector::get — Returns the value at a given index.
    Ds\Vector::insert — Inserts values at a given index.
    Ds\Vector::isEmpty — Returns whether the vector is empty
    Ds\Vector::join — Joins all values together as a string.
    Ds\Vector::jsonSerialize — Returns a representation that can be converted to JSON.
    Ds\Vector::last — Returns the last value.
    Ds\Vector::map — Returns the result of applying a callback to each value.
    Ds\Vector::merge — Returns the result of adding all given values to the vector.
    Ds\Vector::pop — Removes and returns the last value.
    Ds\Vector::push — Adds values to the end of the vector.
    Ds\Vector::reduce — Reduces the vector to a single value using a callback function.
    Ds\Vector::remove — Removes and returns a value by index.
    Ds\Vector::reverse — Reverses the vector in-place.
    Ds\Vector::reversed — Returns a reversed copy.
    Ds\Vector::rotate — Rotates the vector by a given number of rotations.
    Ds\Vector::set — Updates a value at a given index.
    Ds\Vector::shift — Removes and returns the first value.
    Ds\Vector::slice — Returns a sub-vector of a given range.
    Ds\Vector::sort — Sorts the vector in-place.
    Ds\Vector::sorted — Returns a sorted copy.
    Ds\Vector::sum — Returns the sum of all values in the vector.
    Ds\Vector::toArray — Converts the vector to an array.
    Ds\Vector::unshift — Adds values to the front of the vector.

     

  • Deque Class:“双端队列”的缩写,也用于Ds\Queue中,拥有head、tail两个指针。The pointers can “wrap around” the end of the buffer, which avoids the need to move other values around to make room. This makes shift and unshift very fast?—? something a Ds\Vector can’t compete with. 其具有以下优缺点:
    • Supports array syntax (square brackets).
    • Uses less overall memory than an array for the same number of values.
    • Automatically frees allocated memory when its size drops low enough.
    • get(), set(), push(), pop(), shift(), and unshift() are all O(1).
    • 但Capacity must be a power of 2.insert() and remove() are O(n).
  • Map Class:键值对的连续集合,几乎与数组相同。键可以是任何类型,但必须是唯一的。如果使用相同的键添加到map中,则将替换值。其拥有以下优缺点:
    • Keys and values can be any type, including objects.
    • Supports array syntax (square brackets).
    • Insertion order is preserved.
    • Performance and memory efficiency is very similar to an array.
    • Automatically frees allocated memory when its size drops low enough.
    • Can’t be converted to an array when objects are used as keys.
  • Pair Class:A pair is used by Ds\Map to pair keys with values.

    Ds\Pair implements JsonSerializable {
    /* 方法 */
    public __construct ([ mixed $key [, mixed $value ]] )
    }
  • Set Class:唯一值序列。 This implementation uses the same hash table as Ds\Map, where values are used as keys and the mapped value is ignored.其拥有以下优缺点:
    • Values can be any type, including objects.
    • Supports array syntax (square brackets).
    • Insertion order is preserved.
    • Automatically frees allocated memory when its size drops low enough.
    • add(), remove() and contains() are all O(1).
    • 但Doesn’t support push(), pop(), insert(), shift(), or unshift(). get() is O(n) if there are deleted values in the buffer before the accessed index, O(1) otherwise.
  • Stack Class: “last in, first out”集合,只允许在结构顶部进行访问和迭代。

    Ds\Stack implements Ds\Collection {
    /* 方法 */
    public void allocate ( int $capacity )
    public int capacity ( void )
    public void clear ( void )
    public Ds\Stack copy ( void )
    public bool isEmpty ( void )
    public mixed peek ( void )
    public mixed pop ( void )
    public void push ([ mixed $...values ] )
    public array toArray ( void )
    }
  • Queue Class:“first in, first out”集合,只允许在结构前端进行访问和迭代。

    Ds\Queue implements Ds\Collection {
    /* Constants */
    const int MIN_CAPACITY = 8 ;
    /* 方法 */
    public void allocate ( int $capacity )
    public int capacity ( void )
    public void clear ( void )
    public Ds\Queue copy ( void )
    public bool isEmpty ( void )
    public mixed peek ( void )
    public mixed pop ( void )
    public void push ([ mixed $...values ] )
    public array toArray ( void )
    }
  • PriorityQueue Class:优先级队列与队列是非常相似的,但值以指定的优先级被推入队列,优先级最高的值总是位于队列的前面,同优先级元素“先入先出”顺序任然保留。在一个PriorityQueue上递代是具有破坏性的,相当于连续弹出操作直到队列为空。Implemented using a max heap.

    Ds\PriorityQueue implements Ds\Collection {
    /* Constants */
    const int MIN_CAPACITY = 8 ;
    /* 方法 */
    public void allocate ( int $capacity )
    public int capacity ( void )
    public void clear ( void )
    public Ds\PriorityQueue copy ( void )
    public bool isEmpty ( void )
    public mixed peek ( void )
    public mixed pop ( void )
    public void push ( mixed $value , int $priority )
    public array toArray ( void )
    }
时间: 2024-07-30 14:52:08

PHP中的数据结构:DS扩展的相关文章

sql点滴42—mysql中的数据结构

MySQL 的数值数据类型可以大致划分为两个类别,一个是整数,另一个是浮点数或小数.许多不同的子类型对这些类别中的每一个都是可用的,每个子类型支持不同大小的数据,并且 MySQL 允许我们指定数值字段中的值是否有正负之分或者用零填补. 表列出了各种数值类型以及它们的允许范围和占用的内存空间. 类型 大小 范围(有符号) 范围(无符号) 用途 TINYINT 1 字节 (-128,127) (0,255) 小整数值 SMALLINT 2 字节 (-32 768,32 767) (0,65 535)

python中的数据结构

1.列表 (1)   建立列表 list('python') ['p', 'y', 't', 'h', 'o', 'n'] (2)列表的常用方法: append   在列表末尾添加元素 >>>l=['a','b','c'] >>>l.append('d') >>>l ['a','b','c','d'] count   统计某个元素在列表中出现的次数 >>>['a','a','b','c'].count('a') 2 extend  扩

扩展Microsoft Graph数据结构 - 架构扩展

前言 此前我有一篇 文章 讲解了Microsoft Graph的一种数据扩展技术-- 开发扩展(Open Extensions),它可以实现在支持的对象(例如用户,组等)上面附加任意的数据.但开放扩展的问题在于,它是基于某个具体对象的,你无法确定两个对象是否具有同样的扩展(即便属性名一样,但也可能其包含的数据完全不同).如果我们需要对一类对象进行统一的扩展,例如给组(Group)这个类型添加几个特殊的属性,此时就可以用到架构扩展这个非常强大的技术. 关于架构扩展,官方的文档请参考 https:/

[转]详细介绍java中的数据结构

详细介绍java中的数据结构 本文介绍的是java中的数据结构,本文试图通过简单的描述,向读者阐述各个类的作用以及如何正确使用这些类.一起来看本文吧! 也许你已经熟练使用了java.util包里面的各种数据结构,但是我还是要说一说java版数据结构与算法,希望对你有帮助. 线性表,链表,哈希表是常用的数据结构,在进行Java开发时,JDK已经为我们提供了一系列相应的类来实现基本的数据结构.这些类均在java.util包中.本文试图通过简单的描述,向读者阐述各个类的作用以及如何正确使用这些类. C

ExtJS学习-----------Ext.String,ExtJS对javascript中的String的扩展

关于ExtJS对javascript中的String的扩展,能够參考其帮助文档,文档下载地址:http://download.csdn.net/detail/z1137730824/7748893 以下对当中的部分方法进行介绍: (1)capitalize capitalize( String string ) : String 返回一个字符串.该字符串中第一个字母为大写字母 Parameters string : String 要转换的字符串 Returns String 转换后的字符串 (2

ExtJS学习-----------Ext.Array,ExtJS对javascript中的Array的扩展

关于ExtJS对javascript中的Array的扩展.能够參考其帮助文档,文档下载地址:http://download.csdn.net/detail/z1137730824/7748893 因为Array中的方法过多.将当中的部分方法设计实例进行学习.实例地址:http://blog.csdn.net/z1137730824/article/details/38797257 (1)Ext.Array中的方法 clean( Array array ) : Array 过滤掉数组里的空值,空值

java中的数据结构(集合|容器)

对java中的数据结构做一个小小的个人总结,虽然还没有到研究透彻jdk源码的地步.首先.java中为何需要集合的出现?什么需求导致.我想对于面向对象来说,对象适用于描述任何事物,所以为了方便对于对象的操作.存储就出现了集合,集合应该是存储对象最常用的一种方式了,相对于数组更灵活,可变长度.同时集合也只能存储对象不能使基本数据类型. 集合框架分为两个派系Collection和Map而每一种集合类型都是基于特定的数据结构,Collection接口继承了Iterable接口所以可以使用Iterable

Java中的数据结构及排序算法

(明天补充) 主要是3种接口:List Set Map List:ArrayList,LinkedList:顺序表ArrayList,链表LinkedList,堆栈和队列可以使用LinkedList模拟 Set:HashSet没有重复记录的集合 Map:HashMap就是哈希表 Collection ├List │├LinkedList │├ArrayList │└Vector │ └Stack └Set Map ├Hashtable ├HashMap └WeakHashMap 数据结构参考链接

ExtJS学习-----------Ext.Number,ExtJS对javascript中的Number的扩展

关于ExtJS对javascript中的Number的扩展,可以参考其帮助文档,文档下载地址:http://download.csdn.net/detail/z1137730824/7748893 下面对其中的部分方法进行介绍: (1)constrain constrain( Number number, Number min, Number max ) : Number 检查给定的数值是否在约束的范围内. If the number is already within the 如果再范围内就返