Example #1
0
 public void Dispose()
 {
     this.Data   = null;
     this.LChild = null;
     this.RChild = null;
 }
Example #2
0
 static void Main(string[] args)
 {
     root = new BTNode(1);
 }