/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } }; */ class Solution { public: vector<int> vl, vr; bool isSymmetrical(TreeNode* pRoot) { stack<TreeNode*> sl, sr; TreeNode *pl = pRoot, *pr = pRoot; while (p...