import java.util.*;
class TNode
{
private Map<Integer,TNode> map = new HashMap<Integer,TNode>();
public TNode()
{
}
public void addChild(int i,TNode t)
{
map.put(i, t);
}
public TNode getChild(int i)
{
return map.get([......]
import java.util.*;
class TNode
{
private Map<Integer,TNode> map = new HashMap<Integer,TNode>();
public TNode()
{
}
public void addChild(int i,TNode t)
{
map.put(i, t);
}
public TNode getChild(int i)
{
return map.get([......]