Exemplo n.º 1
0
 public void TestIsEmpty()
 {
     var bst = new BinarySearchTree<char, int>();
     Assert.True(bst.IsEmpty());
     bst.Put('A', 1);
     Assert.False(bst.IsEmpty());
 }