aboutsummaryrefslogtreecommitdiff
blob: 8fe1a9eeb30a5abe098c395a552281477289e2d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
	<maintainer type="person">
		<email>vowstar@gmail.com</email>
		<name>Huang Rui</name>
	</maintainer>
	<upstream>
		<remote-id type="github">tlwg/libdatrie</remote-id>
	</upstream>
	<longdescription lang="en">
	This is an implementation of double-array structure for representing trie, 
	as proposed by Junichi Aoe.
	Trie is a kind of digital search tree, an efficient indexing method in which
	search time is independent of database size. It only takes O(m) search time,
	where m is the length of the search string. Comparably as efficient as hashing,
	trie also provides flexibility on incremental matching and key spelling
	manipulation. This makes it ideal for lexical analyzers, as well as spelling
	dictionaries.
	</longdescription>
</pkgmetadata>