Skip to content

Instantly share code, notes, and snippets.

@tarlanahad
Created February 10, 2018 15:06
Show Gist options
  • Save tarlanahad/c75e011ff8789a77cf18cf18921828f2 to your computer and use it in GitHub Desktop.
Save tarlanahad/c75e011ff8789a77cf18cf18921828f2 to your computer and use it in GitHub Desktop.
The node class for AVL tree
class Node {
Node Left, Right, Parent;
int Key;
Node(int Key) {
this.Key = Key;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment