Skip to content

simple-trie : An implementation of a generic prefix trie

Notifications You must be signed in to change notification settings

trsquarelab/simple-trie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-trie

Travis-CI

Introduction

This is an implementation of a generic prefix trie. The code is written in pure C++ template. The trie is very similar to STL associative container in its usage.

Currently following features are supported.

  • Iterator support
  • Addition of an element
  • Removal of an element
  • Retrieval of an element
  • Checking the existence of an element
  • Finding element with a given key
  • Finding elements with common prefix

See http://en.wikipedia.org/wiki/Trie for more information about Trie.

About

simple-trie : An implementation of a generic prefix trie

Resources

Stars

Watchers

Forks

Packages

No packages published