diff options
author | Adrian Kummerländer | 2014-02-04 19:21:42 +0100 |
---|---|---|
committer | Adrian Kummerländer | 2014-02-04 19:21:42 +0100 |
commit | 85b17dca6e62fc43517506c281f16dd91f53f0ae (patch) | |
tree | 0db8e754d1e2413fe2c037f6943c4157a527a212 | |
parent | 8d1661ea333f15ddc2dde3b2a25288d1ccf485d9 (diff) | |
download | Trie-85b17dca6e62fc43517506c281f16dd91f53f0ae.tar Trie-85b17dca6e62fc43517506c281f16dd91f53f0ae.tar.gz Trie-85b17dca6e62fc43517506c281f16dd91f53f0ae.tar.bz2 Trie-85b17dca6e62fc43517506c281f16dd91f53f0ae.tar.lz Trie-85b17dca6e62fc43517506c281f16dd91f53f0ae.tar.xz Trie-85b17dca6e62fc43517506c281f16dd91f53f0ae.tar.zst Trie-85b17dca6e62fc43517506c281f16dd91f53f0ae.zip |
Added basic README.md
-rw-r--r-- | README.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..db5d4f7 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Trie + +... is a basic template based implementation of a prefix tree data structure. + +## Current features: + +- Specializable tree element type +- Adding, removing and resolving paths in the prefix tree +- Builds on the standard library + |