tinyporo/trie-suggester

Example with Trie

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:project

pkg:composer/tinyporo/trie-suggester

dev-master 2018-07-12 09:24 UTC

This package is auto-updated.

Last update: 2025-10-09 22:56:34 UTC


README

Project thực hành trie

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