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

Public Attributes | |
| Node * | node |
| Pointer to the node found (either exact match or the successor). | |
| bool | is_equal |
True if node points to an exact match for the search key, false if it points to the successor. | |
| size_t | lcp |
| The LCP value computed during the search leading to this node. | |
Helper struct to return a Node pointer, a flag indicating equality, and an LCP value.
Used by find_equal_or_successor.
Definition at line 336 of file SkipTrie.hpp.
| bool SkipTrie< CHAR_T, CHAR_SIZE_BITS >::EqualOrSuccessor::is_equal |
True if node points to an exact match for the search key, false if it points to the successor.
Definition at line 341 of file SkipTrie.hpp.
| size_t SkipTrie< CHAR_T, CHAR_SIZE_BITS >::EqualOrSuccessor::lcp |
The LCP value computed during the search leading to this node.
Definition at line 343 of file SkipTrie.hpp.
| Node* SkipTrie< CHAR_T, CHAR_SIZE_BITS >::EqualOrSuccessor::node |
Pointer to the node found (either exact match or the successor).
Definition at line 339 of file SkipTrie.hpp.