public TernarySearchNode GetLowNode() { if (LowNode == null) { LowNode = new TernarySearchNode(); } return(LowNode); }
public TernarySearchNode GetHiNode() { if (HiNode == null) { HiNode = new TernarySearchNode(); } return(HiNode); }
public TernarySearchNode GetEqNode() { if (EqNode == null) { EqNode = new TernarySearchNode(); } return(EqNode); }