maxwilms / data-structures
PHP 的数据结构集合
dev-master
2015-08-06 12:50 UTC
Requires (Dev)
- phpspec/phpspec: ^2.2
This package is not auto-updated.
Last update: 2024-09-28 17:54:42 UTC
README
各种目的的数据结构集合。
安装
首先安装 composer。
通过 composer 需求数据结构集合
composer require maxwilms/data-structures
现在你可以开始使用了!
BitArray
用于紧凑存储位的数据结构。
<?php
use maxwilms\DataSructures\BitArray;
$bitArray = new BitArray(1000); // should store 1000 bits.
$bitArray->set(3); // set a single bit
$bitArray->has(3); // true
$bitArray->has(17); // false