initial commit
This commit is contained in:
commit
ee041ca50c
2 changed files with 50 additions and 0 deletions
12
src/main/java/com/hashbangbash/trie/Node.java
Normal file
12
src/main/java/com/hashbangbash/trie/Node.java
Normal file
|
@ -0,0 +1,12 @@
|
|||
package com.hashbangbash.trie;
|
||||
|
||||
public class Node {
|
||||
private Node children;
|
||||
public Node() {
|
||||
}
|
||||
|
||||
public Node getChildren() {
|
||||
return this.children;
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue