|
Zip and Skip Tries
|
Helper struct to return a Node pointer and an associated LCP value. More...
#include <SkipTrie.hpp>

Public Attributes | |
| Node * | node |
| Pointer to the found node (or null if not found). | |
| size_t | lcp |
| The LCP value computed during the search leading to this node. | |
Helper struct to return a Node pointer and an associated LCP value.
Used primarily by find_first.
Definition at line 312 of file SkipTrie.hpp.
| size_t SkipTrie< CHAR_T, CHAR_SIZE_BITS >::NodeLCP::lcp |
The LCP value computed during the search leading to this node.
Definition at line 317 of file SkipTrie.hpp.
| Node* SkipTrie< CHAR_T, CHAR_SIZE_BITS >::NodeLCP::node |
Pointer to the found node (or null if not found).
Definition at line 315 of file SkipTrie.hpp.