• C#实现二叉树外带中序遍历(转载)


  • using System;
  • namespace BinaryTree
  • {
  •     // Binary Tree的结点类
  •     class Node
  •     {
  •         public int Data { getset; }
  •         public Node LeftSubNode { getset; }
  •         public Node RightSubNode { getset; }
  •         // 结点为自己追加子结点(与向左/向右追加结点,形成递归)
  •         public void Append(Node subNode)
  •         {
  •             if (subNode.Data <= this.Data)
  •             {
  •                 this.AppendLeft(subNode);
  •             }
  •             else
  •             {
  •                 this.AppendRight(subNode);
  •             }
  •         }
  •         // 向左追加
  •         public void AppendLeft(Node subNode)
  •         {
  •             if (this.LeftSubNode == null)
  •             {
  •                 this.LeftSubNode = subNode;
  •             }
  •             else
  •             {
  •                 this.LeftSubNode.Append(subNode);
  •             }
  •         }
  •         // 向右追加
  •         public void AppendRight(Node subNode)
  •         {
  •             if (this.RightSubNode == null)
  •             {
  •                 this.RightSubNode = subNode;
  •             }
  •             else
  •             {
  •                 this.RightSubNode.Append(subNode);
  •             }
  •         }
  •         // 结点显示自己的数据
  •         public void ShowData()
  •         {
  •             Console.WriteLine("Data={0}"this.Data);
  •         }
  •     }
  •     // BinaryTree类
  •     class Tree
  •     {
  •         // 根结点
  •         public Node Root { getset; }
  •         // 以根结点为起点,插入结点
  •         public void Insert(Node newNode)
  •         {
  •             if (this.Root == null)
  •             {
  •                 this.Root = newNode;
  •             }
  •             else
  •             {
  •                 this.Root.Append(newNode);
  •             }
  •         }
  •         // 重载,默认以根结点为起点遍历
  •         public void MidTravel()
  •         {
  •             this.MidTravel(this.Root);
  •         }
  •         
  •         // 中序遍历(递归)
  •         public void MidTravel(Node node)
  •         {
  •             if (node.LeftSubNode != null)
  •             {
  •                 this.MidTravel(node.LeftSubNode);
  •             }
  •             node.ShowData();
  •             if (node.RightSubNode != null)
  •             {
  •                 this.MidTravel(node.RightSubNode);
  •             }
  •         }
  •     }
  •     class Program
  •     {
  •         static void Main(string[] args)
  •         {
  •             Tree tree = new Tree();
  •             
  •             tree.Insert(new Node { Data = 3 });
  •             tree.Insert(new Node { Data = 6 });
  •             tree.Insert(new Node { Data = 2 });
  •             tree.Insert(new Node { Data = 7 });
  •             tree.Insert(new Node { Data = 18 });
  •             
  •             tree.MidTravel();
  •         }
  •     }
  • }
  • 相关阅读:
    《四世同堂》金句摘抄(一)
    Django打造在线教育平台_day_3: 搭建后台管理系统Xadmin之其他app的数据表注册
    Django打造在线教育平台_day_3: 搭建后台管理系统Xadmin
    Django打造在线教育平台_day_3: 搭建后台管理系统Django自带的admin
    Django打造在线教育平台_day_2:新建operation app 编写models
    Django打造在线教育平台_day_2:新建organization app 编写models
    Django打造在线教育平台_day_2:新建courses app 编写models
    Django打造在线教育平台_day_2:新建users app 编写models之完善
    Django打造在线教育平台_day_2:新建users app 编写models之扩展user表
    Django打造在线教育平台_day_1:开发环境与项目的搭建
  • 原文地址:https://www.cnblogs.com/guoxiaowen/p/1262571.html
  • Copyright © 2020-2023  润新知