数据结构的PHP库.zip

时间:2022-07-31 04:00:39
【文件属性】:
文件名称:数据结构的PHP库.zip
文件大小:47KB
文件格式:ZIP
更新时间:2022-07-31 04:00:39
类库下载-数据结构的PHP库 <?php if (!isset($argv)) {     fprintf(STDERR, "Must be run on command line");     exit(1); } if (!isset($argv[3])) {     fprintf(STDERR, "USAGE: %s archive_name stubfile source1 [source2...]" . PHP_EOL, $argv[0]);     exit(2); } $phar = new Phar($argv[1]); foreach (array_slice($argv, 2) as $file) {     $phar->addFile(__DIR__ . "/$file", $file); } $stub = $argv[2]; $phar->addFile(__DIR__ . "/$stub", $stub); $phar->setStub($phar->createDefaultStub($stub));数据结构是计算机存储、组织数据的方式。数据结构是指相互之间存在一种或多种特定关系的数据元素的集合。通常情况下,精心选择的数据结构可以带来更高的运行或者存储效率。数据结构往往同高效的检索算法和索引技术有关。
【文件预览】:
Ardent-master
----src()
--------Collection()
--------Option.php(1KB)
----sources.mk(2KB)
----config.mk(31B)
----.travis.yml(81B)
----LICENSE(1KB)
----test()
--------Collection()
--------autoload.php(671B)
--------OptionTest.php(4KB)
----phpunit.xml(651B)
----README.md(3KB)
----Makefile(305B)
----make-loader.php(353B)
----.gitignore(51B)
----make-phar.php(467B)
----composer.json(730B)

网友评论