leetcode 100. Same Tree
Posted 去做点事情
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 100. Same Tree相关的知识,希望对你有一定的参考价值。
class Solution { public: bool isSameTree(TreeNode* p, TreeNode* q) { if(p == NULL && q == NULL) return true; else if(p == NULL || q == NULL) return false; if(p->val != q->val) return false; return isSameTree(p->left,q->left) && isSameTree(p->right,q->right); } };
以上是关于leetcode 100. Same Tree的主要内容,如果未能解决你的问题,请参考以下文章