2017 © Pedro Peláez
 

project trie-suggester

Example with Trie

image

tinyporo/trie-suggester

Example with Trie

  • Thursday, July 12, 2018
  • by TinyPoro
  • Repository
  • 0 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Poro\TrieSuggester

Project thực hành trie, (*1)

Usage

  • Khởi tạo đối tượng
$trie = new \Poro\TrieSuggester\TrieSuggester();
  • load danh sách các từ vào cây Trie
$trie->loadDict($word_array);

  • Lấy ra danh sách các từ gợi ý từ dữ liệu nhập vào. (Lấy ra các từ bắt đầu với từ được nhập vào, không phân biệt hoa thường của input)
$trie->suggest($string);
$trie->alternateSuggest($string);

Note

The Versions

12/07 2018

dev-master

9999999-dev

Example with Trie

  Sources   Download

MIT

by Avatar TinyPoro