Skip to content

Instantly share code, notes, and snippets.

@zhangxiaomu01
Created July 20, 2019 17:32
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 zhangxiaomu01/1d8e8f82e3f70dd18d9e16761290a668 to your computer and use it in GitHub Desktop.
Save zhangxiaomu01/1d8e8f82e3f70dd18d9e16761290a668 to your computer and use it in GitHub Desktop.
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment