https://github.com/xmidt-org/ultrie
A powerful C based trie library.
https://github.com/xmidt-org/ultrie
Last synced: 11 days ago
JSON representation
A powerful C based trie library.
- Host: GitHub
- URL: https://github.com/xmidt-org/ultrie
- Owner: xmidt-org
- License: apache-2.0
- Created: 2019-08-14T08:31:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-07T17:35:25.000Z (over 4 years ago)
- Last Synced: 2025-05-13T00:52:31.672Z (11 days ago)
- Language: C
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ultrie
[](https://travis-ci.com/xmidt-org/ultrie)
[](http://codecov.io/github/xmidt-org/ultrie?branch=master)
[](https://scan.coverity.com/projects/ultrie)
[](https://github.com/xmidt-org/ultrie/blob/master/LICENSE)
[](CHANGELOG.md)A powerful C based trie library and set of utilities that allow you to build highly
efficient tries dynamically and serialize them into a directly usable format.# Building and Testing Instructions
```
mkdir build
cd build
cmake ..
make
make test
```# Dedication
Years ago, I was fortunate enough to work with Edwin (Ed) Rose. He shared an
implementation of this trie with me for a project we worked on together. His
concept for how to dehydrate the trie into an array of bytes and use the array
in place without rehydration was both inspiring as well as highly powerful.Unfortunately Ed passed away in 2010 and I've not been able to debug the original
code completely. This new implementation is dedicated to the great design and
idea that Ed came up with in the 1980s. Thank you Ed.- Weston Schmidt