Example #1
0
        public void Example()
        {
            BinaryTree <int> tree = GetExampleTree();
            var l = Q07.BfsTraverse(tree);

            AssertExampleListofList(l);
        }
Example #2
0
        public void TestWithoutAdditonalDataStructure()
        {
            var l = Q07.BfsTraverseWithoutWrapper(GetExampleTree());

            AssertExampleListofList(l);
        }