MCPcopy 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

insertMethod · 0.95
checkWordMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected