sorted-list/sorted-list
最新稳定版本:1.1.0
Composer 安装命令:
composer require sorted-list/sorted-list
包简介
The package provides sorted list class.
README 文档
README
The package provides sorted list class with methods to work with sorted list.
How to install
Add the package
composer require sorted-list/sorted-list
How to use
Create a class SortedList
use SortedList\SortedList;
$sortedList = new SortedList();
Methods
- Add new value to sorted list
$sortedList->put($value);
- Get sorted list
$sortedList->get();
- Check if value exists in sorted list
$sortedList->exists($value);
- Get leftmost position of new value
$sortedList->leftPosition($value);
- Get rightmost position of new value
$sortedList->rightPosition($value);
- Get minimum and maximum value respectively
$sortedList->getMin();
$sortedList->getMax();
- Extract minimum and maximum value respectively
$sortedList->popMin();
$sortedList->popMax();
Unit tests
- Install unit test package
composer install --dev
- Run unit tests
./vendor/bin/phpunit
统计信息
- 总下载量: 186
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2023-11-01