File: README.md

package info (click to toggle)
golang-github-ctdk-go-trie 0.0~git20161027.0.6443fbc-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 356 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 930 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
About
=====

This library implements tries, also known as prefix trees, using minimal acyclic
finite-state automata for the Go programming language (http://golang.org/).

The implementation is based on [Jan Daciuk, Stoyan Mihov, Bruce W. Watson,
Richard E. Watson (2000)](http://goo.gl/0XLPo). "Incremental Construction of
Minimal Acyclic Finite-State Automata". Computational Linguistics: March 2000,
Vol. 26, No. 1, Pages 3-16.

The javascript equivalent of this library can be found at
[MathieuTurcotte/node-trie](https://github.com/MathieuTurcotte/node-trie).

Installing
==========

    $ go get github.com/MathieuTurcotte/go-trie/gtrie

Documentation
=============

Read it [online](http://go.pkgdoc.org/github.com/MathieuTurcotte/go-trie/gtrie) or run

    $ go doc github.com/MathieuTurcotte/go-trie/gtrie

License
=======

This code is free to use under the terms of the [MIT license](http://mturcotte.mit-license.org/).