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

LeetCode 652. Find Duplicate Subtrees

时间:2018-09-14 10:54:31      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:duplicate   dfs   复杂   cto   public   color   节点   空间复杂度   multiset   

后序遍历,把每个节点的后序遍历用字符串保存下来。

时间复杂度,T(n)=2T(n/2)+n (字符串处理) = O(nlogn),最坏 O(n^2)。

空间复杂度,每个节点都要字符串来存,O(n^2)。

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector<TreeNode *> res;
    multiset<string> s;
    
    vector<TreeNode*> findDuplicateSubtrees(TreeNode* root) {
        dfs(root);
        return res;
    }
    
    string dfs(TreeNode* root){
        if (root==NULL) return "#";
        string left=dfs(root->left);
        string right=dfs(root->right);
        string cur=to_string(root->val)+left+right;
        if (s.count(cur)==1) res.push_back(root);
        s.insert(cur);
        return cur;
    }
};

 

LeetCode 652. Find Duplicate Subtrees

标签:duplicate   dfs   复杂   cto   public   color   节点   空间复杂度   multiset   

原文地址:https://www.cnblogs.com/hankunyan/p/9644540.html

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