Removed whitespace
This commit is contained in:
		@@ -15,6 +15,7 @@ namespace C_.Datastructures.BinarySearchTree
 | 
			
		||||
                Count = 0
 | 
			
		||||
            };
 | 
			
		||||
        }
 | 
			
		||||
        
 | 
			
		||||
        public static Tree<T> Create(T? value){
 | 
			
		||||
            //Create a new Tree with Head
 | 
			
		||||
            return new Tree<T>{
 | 
			
		||||
@@ -64,7 +65,6 @@ namespace C_.Datastructures.BinarySearchTree
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        private TreeNode<T>? Traverse(T value, TreeNode<T> node)
 | 
			
		||||
        {//T is comparable so use methods to determine which way to traverse
 | 
			
		||||
            if(node == default)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user