Example #1
0
 public void SetTree()
 {
     while (!stack.isEmpty())
     {
         tree.AddNode(stack.pull());
     }
 }