Skip to content

Instantly share code, notes, and snippets.

@stefanhaustein
Created April 11, 2016 00:09
Show Gist options
  • Select an option

  • Save stefanhaustein/22277face1566ae7e792912da2b6d8eb to your computer and use it in GitHub Desktop.

Select an option

Save stefanhaustein/22277face1566ae7e792912da2b6d8eb to your computer and use it in GitHub Desktop.
class BinaryTree<T> {
T value;
BinaryTree<T> leftChild;
BinaryTree<T> rightChild;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment