initial commit

This commit is contained in:
Vincent Batts 2012-09-26 18:47:16 -04:00
commit ee041ca50c
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package com.hashbangbash.trie;
public class Node {
private Node children;
public Node() {
}
public Node getChildren() {
return this.children;
}
}