Q101. Symmetric Tree
Last updated
Was this helpful?
Last updated
Was this helpful?
直达:
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree[1,2,2,3,4,4,3]
is symmetric:
But the following[1,2,2,null,3,null,3]
is not:
Note: Bonus points if you could solve it both recursively and iteratively.
两棵树是对称的充要条件是第一棵树的左子树和第二棵树的右子树互相对称,并且第一棵树的右子树与第二棵树的左子树互相对称。
所以用一个判断两个数是否对称做辅助函数