/** struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } }; */ class Solution { public: int rootHeight(TreeNode* root, int height) { if(!root) return height; int left = rootHeight(root->left, height + 1); return left; } in...