Esempio n. 1
0
 public TernarySearchNode GetLowNode()
 {
     if (LowNode == null)
     {
         LowNode = new TernarySearchNode();
     }
     return(LowNode);
 }
Esempio n. 2
0
 public TernarySearchNode GetHiNode()
 {
     if (HiNode == null)
     {
         HiNode = new TernarySearchNode();
     }
     return(HiNode);
 }
Esempio n. 3
0
 public TernarySearchNode GetEqNode()
 {
     if (EqNode == null)
     {
         EqNode = new TernarySearchNode();
     }
     return(EqNode);
 }