Skip to content

Instantly share code, notes, and snippets.

@zhangxiaomu01
Created July 20, 2019 17:32
Embed
What would you like to do?
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