TreeNode(int x) :val(x), left(NULL), right(NULL) {}
初始化支持 TreeNode(int x)这种方式,即 val赋值x,left和right赋值NULL。