Trie implementation for small-case English alphabets a-z
More...
|
| trie ()=default |
| Class default constructor.
|
|
void | insert (const std::string &str) |
|
bool | search (const std::string &str, int index) |
|
bool | deleteString (const std::string &str, int index) |
|
|
uint8_t | char_to_int (const char &ch) const |
| Convert a character to integer for indexing.
|
|
bool | search (const std::shared_ptr< trie > &root, const std::string &str, int index) |
|
|
std::array< std::shared_ptr< trie >, NUM_CHARS<< 1 > | arr |
| Recursive tree nodes as an array of shared-pointers.
|
|
bool | isEndofWord = false |
| identifier if a node is terminal node
|
|
|
static constexpr uint8_t | NUM_CHARS = 26 |
| Number of alphabets.
|
|
Trie implementation for small-case English alphabets a-z
Definition at line 25 of file trie_tree.cpp.
◆ char_to_int()
uint8_t data_structures::trie::char_to_int |
( |
const char & | ch | ) |
const |
|
inlineprivate |
Convert a character to integer for indexing.
- Parameters
-
- Returns
- unsigned integer index
Definition at line 38 of file trie_tree.cpp.
38 {
39 if (ch >= 'A' && ch <= 'Z') {
40 return ch - 'A';
41 } else if (ch >= 'a' && ch <= 'z') {
43 }
44
45 std::cerr << "Invalid character present. Exiting...";
46 std::exit(EXIT_FAILURE);
47 return 0;
48 }
static constexpr uint8_t NUM_CHARS
Number of alphabets.
◆ deleteString()
bool data_structures::trie::deleteString |
( |
const std::string & | str, |
|
|
int | index ) |
|
inline |
removes the string if it is not a prefix of any other string, if it is then just sets the ::data_structure::trie::isEndofWord to false, else removes the given string
- Note
- the function ::data_structure::trie::deleteString might be erroneous
- Todo
- review the function ::data_structure::trie::deleteString and the commented lines
- Parameters
-
str | string to remove |
index | index to remove from |
- Returns
true
if successful
-
false
if unsuccessful
Definition at line 134 of file trie_tree.cpp.
134 {
135 if (index == str.length()) {
137 return false;
138 }
140
141
142
143
144 return true;
145 }
148 return false;
149 }
151 if (var) {
154 return false;
155 } else {
156 int i = 0;
159 return false;
160 }
161 }
162 return true;
163 }
164 }
165
166
167 std::cout << __func__ << ":" << __LINE__
168 << "Should not reach this line\n";
169 return false;
170 }
std::array< std::shared_ptr< trie >, NUM_CHARS<< 1 > arr
Recursive tree nodes as an array of shared-pointers.
bool isEndofWord
identifier if a node is terminal node
uint8_t char_to_int(const char &ch) const
Convert a character to integer for indexing.
bool deleteString(const std::string &str, int index)
◆ insert()
void data_structures::trie::insert |
( |
const std::string & | str | ) |
|
|
inline |
insert string into the trie
- Parameters
-
str | String to insert in the tree |
Definition at line 77 of file trie_tree.cpp.
77 {
78 std::shared_ptr<trie> root(nullptr);
79
80 for (const char& ch : str) {
82 if (root) {
83 if (root->arr[j]) {
84 root = root->arr[j];
85 } else {
86 std::shared_ptr<trie> temp(
new trie());
87 root->arr[j] = temp;
88 root = temp;
89 }
92 } else {
93 std::shared_ptr<trie> temp(
new trie());
95 root = temp;
96 }
97 }
98 root->isEndofWord = true;
99 }
trie()=default
Class default constructor.
◆ search() [1/2]
bool data_structures::trie::search |
( |
const std::shared_ptr< trie > & | root, |
|
|
const std::string & | str, |
|
|
int | index ) |
|
inlineprivate |
search a string exists inside a given root trie
- Parameters
-
str | string to search for |
index | start index to search from |
- Returns
true
if found
-
false
if not found
Definition at line 56 of file trie_tree.cpp.
57 {
58 if (index == str.length()) {
59 if (!root->isEndofWord) {
60 return false;
61 }
62 return true;
63 }
65 if (!root->arr[j]) {
66 return false;
67 }
68 return search(root->arr[j], str, index + 1);
69 }
◆ search() [2/2]
bool data_structures::trie::search |
( |
const std::string & | str, |
|
|
int | index ) |
|
inline |
search a string exists inside the trie
- Parameters
-
str | string to search for |
index | start index to search from |
- Returns
true
if found
-
false
if not found
Definition at line 107 of file trie_tree.cpp.
107 {
108 if (index == str.length()) {
110 return false;
111 }
112 return true;
113 }
116 return false;
117 }
119 }
◆ arr
std::array<std::shared_ptr<trie>, NUM_CHARS << 1> data_structures::trie::arr |
|
private |
Recursive tree nodes as an array of shared-pointers.
Definition at line 29 of file trie_tree.cpp.
◆ isEndofWord
bool data_structures::trie::isEndofWord = false |
|
private |
identifier if a node is terminal node
Definition at line 30 of file trie_tree.cpp.
◆ NUM_CHARS
uint8_t data_structures::trie::NUM_CHARS = 26 |
|
staticconstexprprivate |
The documentation for this class was generated from the following file: