Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ Node
Method
Node
CPP/Tries/implementTrie.cpp:7–13 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
5
bool isWord;
6
7
Node(char c) {
8
this -> c = c;
9
isWord = false;
10
11
for(int i = 0 ; i < 26 ; i++)
12
child[i] = NULL;
13
}
14
};
15
16
class Trie {
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected