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