Skip to content

Instantly share code, notes, and snippets.

@syedjafer
Created May 2, 2021 09:24
Show Gist options
  • Select an option

  • Save syedjafer/15efd7e7829eeaa7c4c815542bec4d8a to your computer and use it in GitHub Desktop.

Select an option

Save syedjafer/15efd7e7829eeaa7c4c815542bec4d8a to your computer and use it in GitHub Desktop.
class Node{
int data;
Node left;
Node right;
Node(int dat)
{
data = dat;
left = right = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment