Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
using System;
|
||||
|
||||
class BinaryTree<T>
|
||||
{
|
||||
public T value;
|
||||
public BinaryTree<T> left;
|
||||
public BinaryTree<T> right;
|
||||
|
||||
public BinaryTree(T value)
|
||||
{
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public BinaryTree<U> Map<U>(Func<T, U> f)
|
||||
{
|
||||
BinaryTree<U> tree = new BinaryTree<U>(f(this.value));
|
||||
if (this.left != null)
|
||||
{
|
||||
tree.left = this.left.Map(f);
|
||||
}
|
||||
if (this.right != null)
|
||||
{
|
||||
tree.right = this.right.Map(f);
|
||||
}
|
||||
return tree;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue