ajw1970 / BinarySearchTree

First stab at Binary Search Tree as presented by Tutu at http://devbytutu.blogspot.co.za/2017/11/algorithm-binary-search-tree_22.html?m=1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BinarySearchTree

Binary search tree (BST) is a binary tree where the value of each node is larger or equal to the values in all the nodes in that node's left subtree and is smaller than the values in all the nodes in that node's right subtree.

Write a function that checks if a given binary search tree contains a given value. For example, for the following tree: n1 (Value: 1, Left: null, Right: null) n2 (Value: 2, Left: n1, Right: n3) n3 (Value: 3, Left: null, Right: null)

Call to Contains(n2, 3) should return true since a tree with root at n2 contains number 3.

Upon further consideration...

From Wikipedia:

In computer science, binary search trees (BST), sometimes called ordered or sorted binary trees, are a particular type of containers: data structures that store "items" (such as numbers, names etc.) in memory.

About

First stab at Binary Search Tree as presented by Tutu at http://devbytutu.blogspot.co.za/2017/11/algorithm-binary-search-tree_22.html?m=1


Languages

Language:C# 100.0%