Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Seogeurim/CS-study
/ getChild
Method
getChild
contents/data-structure/code/Trie/TrieExample.java:57–59 ·
view source on GitHub ↗
(char c)
Source
from the content-addressed store, hash-verified
55
boolean isEnd;
56
57
TrieNode getChild(char c) {
58
return
children[c -
'a'
];
59
}
60
61
boolean hasChild(char c) {
62
return
children[c -
'a'
] != null;
Callers
2
insert
Method · 0.95
checkWord
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected