TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
Implementation of Trie data structure for English alphabets in small characters. More...
#include <array>
#include <cassert>
#include <iostream>
#include <memory>
#include <string>
#include <vector>
Go to the source code of this file.
Classes | |
class | data_structures::trie |
Trie implementation for small-case English alphabets a-z More... | |
Namespaces | |
namespace | data_structures |
for IO operations | |
Functions | |
static void | test () |
Testing function. | |
int | main () |
Main function. | |
Implementation of Trie data structure for English alphabets in small characters.
Definition in file trie_tree.cpp.
int main | ( | void | ) |
Main function.
Definition at line 205 of file trie_tree.cpp.
|
static |
Testing function.
Definition at line 178 of file trie_tree.cpp.