【剑指 Offer 28. 对称的二叉树】(二叉树的对称遍历)

 【解题思路】

           首先想到的方法是,将二叉树按照中序遍历的方式将数据存储到一个链表list中,比如root = [1,2,2,3,4,4,3]的中序序列是[3,2,4,1,4,2,3],如果链表是对称的,则认为二叉树是对称的。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public boolean isSymmetric(TreeNode root) {
        int len;
        ArrayList<Integer> list = new ArrayList<Integer>();
        search(root, list);

        len = list.size();
        for(int i = 0; i < len/2; i++)
        {
            if(list.get(i) != list.get(len-i-1))
            {
                return false;
            }
        }
        return true;
    }

    public void search(TreeNode node, ArrayList<Integer> list)
    {
        if(node == null) return;
        search(node.left, list);
        list.add(node.val);
        search(node.right, list);
    }
}

       而在上述测试样例中,中序序列是[2,2,1,2,2],链表是对称的,而二叉树不是对称的。

       后来采用左右子树同时对称查找的方式来做:如果左节点等于对称的右节点,且它们的子树对称,表示这一对节点满足要求;否则认为这棵二叉树不是对称的。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public boolean isSymmetric(TreeNode root) {
        if(root == null) return true;
        return search(root.left, root.right);
    }

    public boolean search(TreeNode L, TreeNode R)
    {
        if(L == null && R != null) return false;
        else if(L != null && R == null) return false;
        else if(L == null && R == null) return true;
        else
        {
            if(search(L.left, R.right) && search(L.right, R.left))
            {
                if(L.val == R.val)
                {
                    return true;
                }
            }
            return false;
        }  
    }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值