srhickma / padd

Fast and Automatic Formatting of Context-Free Languages
Apache License 2.0
2 stars 2 forks source link

Binary Trie Implementation #214

Closed srhickma closed 4 years ago

srhickma commented 4 years ago

Implement the TransitionTrie as a binary trie instead of a character-based trie using hash maps. The current implementation gains little over a simple HashMap, but could be much faster for searching if a proper binary structure is implemented.