# Dynamic Path-Decomposed Tries

**Authors:** Shunsuke Kanda, Dominik K\"oppl, Yasuo Tabei, Kazuhiro Morita and, Masao Fuketa

arXiv: 1906.06015 · 2020-07-23

## TL;DR

This paper introduces a dynamic, space-efficient keyword dictionary using path decomposition and compact hash tries, significantly reducing memory usage while maintaining performance.

## Contribution

It presents a novel dynamic keyword dictionary based on path decomposition and compact hash tries, addressing the challenge of space efficiency in dynamic settings.

## Key findings

- Requires up to 68% less space than existing solutions
- Achieves a favorable space-time tradeoff
- Effective on real-world datasets

## Abstract

A keyword dictionary is an associative array whose keys are strings. Recent applications handling massive keyword dictionaries in main memory have a need for a space-efficient implementation. When limited to static applications, there are a number of highly-compressed keyword dictionaries based on the advancements of practical succinct data structures. However, as most succinct data structures are only efficient in the static case, it is still difficult to implement a keyword dictionary that is space efficient and dynamic. In this article, we propose such a keyword dictionary. Our main idea is to embrace the path decomposition technique, which was proposed for constructing cache-friendly tries. To store the path-decomposed trie in small memory, we design data structures based on recent compact hash trie representations. Experiments on real-world datasets reveal that our dynamic keyword dictionary needs up to 68% less space than the existing smallest ones, while achieving a relevant space-time tradeoff.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1906.06015/full.md

## Figures

47 figures with captions in the complete paper: https://tomesphere.com/paper/1906.06015/full.md

## References

66 references — full list in the complete paper: https://tomesphere.com/paper/1906.06015/full.md

---
Source: https://tomesphere.com/paper/1906.06015