Wordsearch Solver
|
namespace trie More...
Classes | |
class | Node |
A vector of edges to child nodes, sorted by edge child node character value, and a bool indicating whether or not a word terminates at this node. More... | |
class | Trie |
Recursive immutable node based trie. More... | |
Functions | |
const Node * | search (const Node &node, std::string_view word) |
std::ostream & | operator<< (std::ostream &os, const Node &node) |
std::ostream & | operator<< (std::ostream &os, const Trie &ct) |
namespace trie