码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode-100-Same Tree]

时间:2017-02-25 18:41:24      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:tree   false   top   ural   node   blog   etc   rally   leetcode   

Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and the nodes have the same value.

首先是递归版本:

bool isSameTree(TreeNode* p, TreeNode* q)
    {//递归
        if (p == NULL && q == NULL) return true;
        if (p == NULL && q != NULL || p != NULL && q == NULL || q->val != p->val) return false;

        return isSameTree(p->left, q->left) && isSameTree(p->right,q->right);
    }

运行效率:

技术分享

对比一下非递归版本:

bool isSameTree2(TreeNode* p, TreeNode* q)
    {//先序非递归
        stack<TreeNode*>st1, st2;
        if (p != NULL)st1.push(p);
        if (q!= NULL)st2.push(q);
        TreeNode* ptemp;
        TreeNode* qtemp;
        while (!st1.empty() && !st2.empty())
        {
            ptemp = st1.top();
            qtemp = st2.top();
            if (ptemp->val != qtemp->val) return false;
            st1.pop();
            st2.pop();
            if (ptemp->right != NULL) st1.push(ptemp->right);
            if (qtemp->right != NULL) st2.push(qtemp->right);
            if (st1.size() != st2.size()) return false;//比较两个栈的大小 

            if (ptemp->left != NULL) st1.push(ptemp->left);
            if (qtemp->left != NULL) st2.push(qtemp->left);
            if (st1.size() != st2.size()) return false;//比较两个栈的大小 
        }
        return (st1.size() == st2.size());
    }

运行效率:

技术分享

可见,非递归确实效率要高一些。

[leetcode-100-Same Tree]

标签:tree   false   top   ural   node   blog   etc   rally   leetcode   

原文地址:http://www.cnblogs.com/hellowooorld/p/6442312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!