Exemplo n.º 1
0
 public void AddLeft(BinaryNode <T> left)
 {
     Left        = left;
     Left.Parent = this;
 }
Exemplo n.º 2
0
 public void AddRight(BinaryNode <T> right)
 {
     Right        = right;
     Right.Parent = this;
 }
Exemplo n.º 3
0
        public ListOfDepths(BinaryNode <int> root)
        {
            int d = 0;

            TraverseDepthsDFS(root, d);
        }