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
相關文章
相關標籤/搜索