PHP code example of agentsib / binary-search
1. Go to this page and download the library: Download agentsib/binary-search library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
agentsib / binary-search example snippets
if (count($argv) < 3) {
// Вывод справки
print "Используйте php5 test.php файл искомая строка\n";
exit;
} else {
// Берем атрибуты переданные с коммандной строки
$filepath = $argv[1];
$pattern = $argv[2];
}
// Создаем объект источник данных для поиска
$dataSource = new \BinarySearch\DataSource\FileData($filepath);
// Инициализируем класс бинарного поиска
$searcher = new \BinarySearch\BinarySearch($dataSource);
// Для отладки можем инжектировать объект логгер
//$searcher->injectLogger(new \BinarySearch\ConsoleLog());
// Производим поиск позиции в источники данных, в которой находится искомое значение
$position = $searcher->search($pattern);
if ( is_null($position) ) {
print 'Не найдено'."\n";
exit;
}
print 'Найдено на позиции: '.$position."\n";
// Идем на указаную позицию и читаем найденое
$dataSource->moveTo($position);
print 'Значение: ['.$dataSource->getData().']'."\n";