コード例 #1
0
ファイル: Program.cs プロジェクト: adelinast/TreeShapes
        public void Run()
        {
            TreeShapes treeshapes = new TreeShapes();

            treeshapes.SetServiceProvider(_serviceProvider);

            BinaryTree <Shape> tree = treeshapes.CreateObjects();

            tree.PrintLevelOrder();
            tree.Draw();
        }