DataStructuresCSharp/C#/Datastructures/BinaryTree/Tree.cs

219 lines
6.8 KiB
C#

using C_.Datastructures.Stack;
using C_.Datastructures.LinkedList;
using System;
namespace C_.Datastructures.BinaryTree
{
internal class Tree<T> where T:IComparable
{
public TreeNode<T>? Root { get; set; }
public int Count { get; set; }
public static Tree<T> Create(){
//Create a new Tree with no Head
return new Tree<T>{
Root = null,
Count = 0
};
}
public static Tree<T> Create(T value){
//Create a new Tree with Head
return new Tree<T>{
Root = TreeNode<T>.Create(value)
};
}
public void Add(T value)
{//Add item to the correct position in the tree (Input cannot be null)
Count++;
if (Root == default)
{//If new node should become the root
Root = TreeNode<T>.Create(value);
return;
}
//Find position to insert
TreeNode<T> node = Root;
node = Descend(value, node)!;
if (value.CompareTo(node.Value) < 0)
{//Insert to left
node.Left = TreeNode<T>.Create(value);
return;
}
//Insert to right
node.Right = TreeNode<T>.Create(value);
return;
}
public bool Delete(T value)
{
//Check if root of tree is null
if (Count == 0)
return false;
//Check if the only value is the root
if (Count == 1)
{
if (Root!.Value!.Equals(value))
{//If the only item is the one we are trying to delete
Count = 0;
Root = default;
return true;
}
return false;
}
//Stack to store the items leading up to and including the one we are trying to delete
Stack<TreeNode<T>>? deletionStack;
//Search for item being deleted + Parents
deletionStack = Find(value);
if (deletionStack == default)
return false; //Item was not found
//Delete Item (replace) and replace pointers to retain integrity of tree
TreeNode<T>? node = deletionStack.Pop();
TreeNode<T>? parent = deletionStack.Pop();
//stack to store the items leading up to the value that we will use to replace the node
Stack<TreeNode<T>>? replacementStack = Min(node!.Right);
if (replacementStack != default)
{//If there are values to the right
TreeNode<T>? replacementNode = replacementStack.Pop();
node.Value = replacementNode!.Value;
//Remove the node that we have taken the value from
if (replacementStack.Peek() != default)
{//If the parent is not the node that we replaced
replacementStack.Pop()!.Left = replacementNode.Right;
}else{//If the parent is the node what we replaced
node.Right = replacementNode.Right;
}
}else{
//Parent's relation needs to be set to null as there are no greater values
if (node.Value!.CompareTo(parent!.Value) < 0)
{//Item being deleted is the left child
parent.Left = default;
}
//Item being deleted is the right value
parent.Right = default;
}
Count--;
return true;
}
public LinkedList<T>? Inorder(TreeNode<T>? node)
{
LinkedList<T> list = LinkedList<T>.Create();
if (Count == 0)
return default;
if (node == null)
node = Root;
Inorder(list, node!);
return list;
}
private void Inorder(LinkedList<T> list, TreeNode<T> node)
{
if (node.Left != default)
Inorder(list, node.Left);
list.Append(node.Value!);
if (node.Right != default)
Inorder(list, node.Right);
}
private TreeNode<T>? Traverse(T value, TreeNode<T>? node)
{//T is comparable so use methods to determine which way to traverse
if(node == default)
return default;
if (value.CompareTo(node.Value) < 0)
{//Traverse Left
return node.Left;
}
//Traverse Right
return node.Right;
}
private Stack<TreeNode<T>>? Find(T value)
{//Return true if the item can be found within the tree
if (Root == default || Root.Value!.Equals(default))
return default;
TreeNode<T>? current = Root;
Stack<TreeNode<T>>? stack = Stack<TreeNode<T>>.Create(Root);
while (stack.Peek() != default)
{
//Compare value at node to see if we are looking for the root item
if (stack.Peek()!.Value!.Equals(value))
return stack;
stack.Push(Traverse(value, stack.Peek()));
}
return default;
}
private Stack<TreeNode<T>>? Min(TreeNode<T>? node)
{//Returns a Stack with the value on top being the minimum of the subtree
if(node == default)
return default;
//Stack to store and be able to get the parent values
Stack<TreeNode<T>> stack = Stack<TreeNode<T>>.Create(node);
while(true){
if (stack.Peek()!.Left == default)
return stack;
stack.Push(stack.Peek()!.Left);
}
}
private Stack<TreeNode<T>>? Max(TreeNode<T>? node)
{///Returns a Stack with the value on top being the maximum of the subtree
if(node == default)
return default;
//Stack to store and be able to get the parent values
Stack<TreeNode<T>> stack = Stack<TreeNode<T>>.Create(node);
while(true){
if (stack.Peek()!.Right == default)
return stack;
stack.Push(stack.Peek()!.Right);
}
}
private TreeNode<T>? Descend(T value, TreeNode<T>? current)
{//Keep trying to determine whether to go left or right until null node is found that can be appended to
if (current == default)
return default;
TreeNode<T>? node;
node = Descend(value, Traverse(value, current));
if (node == null)
{
return current;
}
return node;
}
}
}