Skip to content

Instantly share code, notes, and snippets.

@stefanhaustein
Created April 11, 2016 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanhaustein/22277face1566ae7e792912da2b6d8eb to your computer and use it in GitHub Desktop.
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