Package ghidra.util.search.trie


package ghidra.util.search.trie
  • Class
    Description
    ByteTrie is a byte-based trie specifically designed to implement the Aho-Corasick string search algorithm.
     
    Class to represent a (possibly non-terminal!) node within the ByteTrie.
     
    CaseInsensitiveByteTrie is a byte-based trie specifically designed to implement the Aho-Corasick string search algorithm, matching alphabetic characters ignoring case.
    Class to represent a (possibly non-terminal!) node within the CaseInsensitiveByteTrie.
    Op<T>
    Operation interface for clients to visit nodes in a ByteTrie.
    A search result container class used with ByteTrie.