sykloid / prefix-containers

Data Structures storing sequences supporting efficient prefix queries.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

prefix-containers
=================

A Trie (also called a digital tree, or prefix tree) is a data structure for
storing sequences, which supports an efficient query to determine which keys
contain a common prefix. The Trie can either simply store whether or not a
sequence is contained within (TrieSet), or it can associate a value with each
sequence (TrieMap).

About

Data Structures storing sequences supporting efficient prefix queries.

License:GNU General Public License v3.0


Languages

Language:Haskell 100.0%