101. 对称二叉树

101. 对称二叉树web class Solution { public: bool isSymmetric(TreeNode* root) { if(root==NULL) return true; return sychelp(root->left,root->right); } bool sychelp(TreeNode *l,Tre
相关文章
相关标签/搜索