8000 GitHub - greg7mdp/amt: An Array Mapped Tree implementation
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

greg7mdp/amt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AMT - Fast integer trie map

This is based on Phil Bagwell's Array Mapped Tree from "Fast And Space Efficient Trie Searches"

It supports unsigned integer keys (32, 64 or 128 bits) and has been specially optimised for the case where keys are somewhat monotonic.

Overview

  • Header only: the file amt.h is all you need

  • ordered container

  • very fast - performance similar to hash table

  • mostly same interface as std::map. However the value_type has both the key and the value const.

  • low memory usage

About

An Array Mapped Tree implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0