示例#1
0
文件: Program.cs 项目: zzfima/Trees
        private static void TestPostorder_PrintAll()
        {
            Console.Write("\n Postorder: \t\t");
            Node <int> n = CreateTestTree();

            Tree.Postorder_PrintAll(n);
        }