Необходимо реализовать дерево и его обход в симметричном, прямом и обратном порядке - C#

Узнай цену своей работы

Формулировка задачи:

Доброго времени суток.C#.Необходимо реализовать дерево и его обход. В симметричном, прямом и обратном порядке. Подскажите пожалуйста как реализовать(хотя бы один из методов).. Рисунок дерева во вложении.

Решение задачи: «Необходимо реализовать дерево и его обход в симметричном, прямом и обратном порядке»

textual
Листинг программы
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4.  
  5. public class BinaryTree<T> : ICollection<T>
  6. {
  7.     protected class Node<TValue>
  8.     {
  9.         public TValue Value
  10.         {
  11.             get;
  12.             set;
  13.         }
  14.         public Node<TValue> Left
  15.         {
  16.             get;
  17.             set;
  18.         }
  19.         public Node<TValue> Right
  20.         {
  21.             get;
  22.             set;
  23.         }
  24.  
  25.         public Node(TValue value)
  26.         {
  27.             Value = value;
  28.         }
  29.     }
  30.  
  31.     protected Node<T> root;
  32.     protected IComparer<T> comparer;
  33.  
  34.     public BinaryTree() : this(Comparer<T>.Default)
  35.     {
  36.     }
  37.     public BinaryTree(IComparer<T> defaultComparer)
  38.     {
  39.         if (defaultComparer == null)
  40.             throw new ArgumentNullException("Default comparer is null");
  41.         comparer = defaultComparer;
  42.     }
  43.     public BinaryTree(IEnumerable<T> collection) : this(collection, Comparer<T>.Default)
  44.     {
  45.        
  46.     }
  47.     public BinaryTree(IEnumerable<T> collection, IComparer<T> defaultComparer) : this(defaultComparer)
  48.     {
  49.         AddRange(collection);
  50.     }
  51.  
  52.     public T MinValue
  53.     {
  54.         get
  55.         {
  56.             if (root == null)
  57.                 throw new InvalidOperationException("Tree is empty");
  58.             var current = root;
  59.             while (current.Left != null)
  60.                 current = current.Left;
  61.             return current.Value;
  62.         }
  63.     }
  64.     public T MaxValue
  65.     {
  66.         get
  67.         {
  68.             if (root == null)
  69.                 throw new InvalidOperationException("Tree is empty");
  70.             var current = root;
  71.             while (current.Right != null)
  72.                 current = current.Right;
  73.             return current.Value;
  74.         }
  75.     }
  76.  
  77.     public void AddRange(IEnumerable<T> collection)
  78.     {
  79.         foreach (var value in collection)
  80.             Add(value);
  81.     }
  82.  
  83.     public IEnumerable<T> Inorder()
  84.     {
  85.         if (root == null)
  86.             yield break;
  87.  
  88.         var stack = new Stack<Node<T>>();
  89.         var node = root;
  90.  
  91.         while (stack.Count > 0 || node != null) {
  92.             if (node == null) {
  93.                 node = stack.Pop();
  94.                 yield return node.Value;
  95.                 node = node.Right;
  96.             }
  97.             else {
  98.                 stack.Push(node);
  99.                 node = node.Left;
  100.             }
  101.         }
  102.     }
  103.     public IEnumerable<T> Preorder()
  104.     {
  105.         if (root == null)
  106.             yield break;
  107.  
  108.         var stack = new Stack<Node<T>>();
  109.         stack.Push(root);
  110.  
  111.         while (stack.Count > 0) {
  112.             var node = stack.Pop();
  113.             yield return node.Value;
  114.             if (node.Right != null)
  115.                 stack.Push(node.Right);
  116.             if (node.Left != null)
  117.                 stack.Push(node.Left);
  118.         }
  119.     }
  120.     public IEnumerable<T> Postorder()
  121.     {
  122.         if (root == null)
  123.             yield break;
  124.  
  125.         var stack = new Stack<Node<T>>();
  126.         var node = root;
  127.  
  128.         while (stack.Count > 0 || node != null) {
  129.             if (node == null) {
  130.                 node = stack.Pop();
  131.                 if (stack.Count > 0 && node.Right == stack.Peek()) {
  132.                     stack.Pop();
  133.                     stack.Push(node);
  134.                     node = node.Right;
  135.                 }
  136.                 else {
  137.                     yield return node.Value;
  138.                     node = null;
  139.                 }
  140.             }
  141.             else {
  142.                 if (node.Right != null)
  143.                     stack.Push(node.Right);
  144.                 stack.Push(node);
  145.                 node = node.Left;
  146.             }
  147.         }
  148.     }
  149.     public IEnumerable<T> Levelorder()
  150.     {
  151.         if (root == null)
  152.             yield break;
  153.  
  154.         var queue = new Queue<Node<T>>();
  155.         queue.Enqueue(root);
  156.  
  157.         while (queue.Count > 0) {
  158.             var node = queue.Dequeue();
  159.             yield return node.Value;
  160.             if (node.Left != null)
  161.                 queue.Enqueue(node.Left);
  162.             if (node.Right != null)
  163.                 queue.Enqueue(node.Right);
  164.         }
  165.     }
  166.  
  167.     #region ICollection<T> Members
  168.     public int Count
  169.     {
  170.         get;
  171.         protected set;
  172.     }
  173.     public virtual void Add(T item)
  174.     {
  175.         var node = new Node<T>(item);
  176.  
  177.         if (root == null)
  178.             root = node;
  179.         else {
  180.             Node<T> current = root, parent = null;
  181.  
  182.             while (current != null) {
  183.                 parent = current;
  184.                 if (comparer.Compare(item, current.Value) < 0)
  185.                     current = current.Left;
  186.                 else
  187.                     current = current.Right;
  188.             }
  189.  
  190.             if (comparer.Compare(item, parent.Value) < 0)
  191.                 parent.Left = node;
  192.             else
  193.                 parent.Right = node;
  194.         }
  195.         ++Count;
  196.     }
  197.     public virtual bool Remove(T item)
  198.     {
  199.         if (root == null)
  200.             return false;
  201.  
  202.         Node<T> current = root, parent = null;
  203.  
  204.         int result;
  205.         do {
  206.             result = comparer.Compare(item, current.Value);
  207.             if (result < 0) {
  208.                 parent = current;
  209.                 current = current.Left;
  210.             }
  211.             else if (result > 0) {
  212.                 parent = current;
  213.                 current = current.Right;
  214.             }
  215.             if (current == null)
  216.                 return false;
  217.         }
  218.         while (result != 0);
  219.  
  220.         if (current.Right == null) {
  221.             if (current == root)
  222.                 root = current.Left;
  223.             else {
  224.                 result = comparer.Compare(current.Value, parent.Value);
  225.                 if (result < 0)
  226.                     parent.Left = current.Left;
  227.                 else
  228.                     parent.Right = current.Left;
  229.             }
  230.         }
  231.         else if (current.Right.Left == null) {
  232.             current.Right.Left = current.Left;
  233.             if (current == root)
  234.                 root = current.Right;
  235.             else {
  236.                 result = comparer.Compare(current.Value, parent.Value);
  237.                 if (result < 0)
  238.                     parent.Left = current.Right;
  239.                 else
  240.                     parent.Right = current.Right;
  241.             }
  242.         }
  243.         else {
  244.             Node<T> min = current.Right.Left, prev = current.Right;
  245.             while (min.Left != null) {
  246.                 prev = min;
  247.                 min = min.Left;
  248.             }
  249.             prev.Left = min.Right;
  250.             min.Left = current.Left;
  251.             min.Right = current.Right;
  252.  
  253.             if (current == root)
  254.                 root = min;
  255.             else {
  256.                 result = comparer.Compare(current.Value, parent.Value);
  257.                 if (result < 0)
  258.                     parent.Left = min;
  259.                 else
  260.                     parent.Right = min;
  261.             }
  262.         }
  263.         --Count;
  264.         return true;
  265.     }
  266.     public void Clear()
  267.     {
  268.         root = null;
  269.         Count = 0;
  270.     }
  271.     public void CopyTo(T[] array, int arrayIndex)
  272.     {
  273.         foreach (var value in this)
  274.             array[arrayIndex++] = value;
  275.     }
  276.     public virtual bool IsReadOnly
  277.     {
  278.         get
  279.         {
  280.             return false;
  281.         }
  282.     }
  283.     public bool Contains(T item)
  284.     {
  285.         var current = root;
  286.         while (current != null) {
  287.             var result = comparer.Compare(item, current.Value);
  288.             if (result == 0)
  289.                 return true;
  290.             if (result < 0)
  291.                 current = current.Left;
  292.             else
  293.                 current = current.Right;
  294.         }
  295.         return false;
  296.     }
  297.     #endregion
  298.  
  299.     #region IEnumerable<T> Members
  300.     public IEnumerator<T> GetEnumerator()
  301.     {
  302.         return Inorder().GetEnumerator();
  303.     }
  304.     #endregion
  305.  
  306.     #region IEnumerable Members
  307.     IEnumerator IEnumerable.GetEnumerator()
  308.     {
  309.         return GetEnumerator();
  310.     }
  311.     #endregion
  312. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

9   голосов , оценка 4 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы