Tries
A PHP implementation of the Trie, RadixTrie and SuffixTrie data structures, (*1)
Master:
, (*2)
Develop:
, (*3)
Requirements
- PHP version 7.2 or higher
Installation
We recommend installing this package with Composer., (*4)
Via composer
In your project root folder, execute, (*5)
composer require markbaker/tries:dev-master
You should now have the files composer.json and composer.lock as well as the directory vendor in your project directory., (*6)
You can then require the Composer autoloader from your code, (*7)
require 'vendor/autoload.php';
Or, if you already have a composer.json file, then require this package in that file, (*8)
"require": {
"markbaker/tries": "dev-master"
}
and update composer., (*9)
composer update
From Phar
Although we strongly recommend using Composer, we also provide a Phar archive builder that will create a Phar file containing all of the library code., (*10)
The phar builder script is in the repository root folder, and can be run using, (*11)
php buildPhar.php
To use the archive, just require it from your script:, (*12)
require 'Tries.phar';
Standard Autoloader
If you want to run the code without using composer's autoloader, and don't want to build the phar, then required the bootstrap.php file from the repository in your code, and this will enable the autoloader for the library., (*13)
require 'bootstrap.php';
Want to contribute?
Fork this library!, (*14)
License
Tries is licensed under an MIT LICENSE), (*15)
Examples
The /examples folder has two examples to demonstrate their use:, (*16)
- playerSearch.php
- playerSearchRadixTrie.php
-
playerSearchSuffixTrie.php, (*17)
allows a search on Wigan Warriors rugby league players based on surname, displaying the record of those that match the entered search criteria, (*18)
usage:, (*19)
php playerSearch <name> <limit>
or, (*20)
php playerSearchRadixTrie <name> <limit>
or, (*21)
php playerSearchSuffixTrie <name> <limit>
where, (*22)
name the first few characters of the surname you want to
search for (or characters from anywhere in the name
if using the Suffix Trie search)
limit optional (default 8) limits the number of results
returned
-
wordSearch.php, (*23)
-
wordSearchRadixTrie.php, (*24)
searches an English dictionary for words, displaying those that match the entered search criteria, (*25)
usage:, (*26)
php wordSearch <searchterm> <limit>
or, (*27)
php wordSearchRadixTrie <searchterm> <limit>
where, (*28)
searchterm can be a prefix*
e.g. "aba*" will return words beginning with "aba"
a *suffix
e.g. "*ose" will return words ending in "ose"
or a split*search criteria
e.g. "t*ly" will return words beginning with "t"
and ending in "ly"
limit optional (default 8) limits the number of results
returned
Note that the dictionary of 160k words will take some time to load, depending on your system, (*29)