Example #1
0
 public void CountHeightTest(int[] mas, int res)
 {
     BinaryTreeLink b = new BinaryTreeLink();
     b.Init(mas);
     int nodes = b.Height();
     Assert.AreEqual(res, nodes);
 }