Advertisement
Evyatar12

BinNode.cs

Jan 14th, 2018
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.30 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace BinaryTree
  6. {
  7.     class BinNode<T>
  8.     {
  9.         private T value;
  10.         private BinNode<T> left, right;
  11.        
  12.         public BinNode(BinNode<T> left, T value, BinNode<T> right)
  13.         {
  14.             this.value = value;
  15.             this.left = left;
  16.             this.right = right;
  17.         }
  18.  
  19.         public BinNode(T value) : this(null, value, null) { }
  20.  
  21.         public T GetValue()
  22.         {
  23.             return this.value;
  24.         }
  25.  
  26.         public BinNode<T> GetLeft()
  27.         {
  28.             return this.left;
  29.         }
  30.  
  31.         public BinNode<T> GetRight()
  32.         {
  33.             return this.right;
  34.         }
  35.  
  36.         public bool HasLeft()
  37.         {
  38.             return this.left != null;
  39.         }
  40.  
  41.         public bool HasRight()
  42.         {
  43.             return this.right != null;
  44.         }
  45.  
  46.         public void SetValue(T value)
  47.         {
  48.             this.value = value;
  49.         }
  50.  
  51.         public void SetLeft(BinNode<T> left)
  52.         {
  53.             this.left = left;
  54.         }
  55.  
  56.         public void SetRight(BinNode<T> right)
  57.         {
  58.             this.right = right;
  59.         }
  60.  
  61.         public override string ToString()
  62.         {
  63.             return this.value.ToString();
  64.         }
  65.     }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement