LeetCode 652. 寻找重复的子树

Posted 穿过雾的阴霾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 652. 寻找重复的子树相关的知识,希望对你有一定的参考价值。

class Solution 
public:
    vector<TreeNode*> res;
    unordered_map<string,int> hashmap;//记录每一个子树出现的次数
    string dfs(TreeNode* root)
    
        if(!root)   return "";
        string str="";
        str+=to_string(root->val)+\',\';
        str+=dfs(root->left)+\',\';
        str+=dfs(root->right)+\',\';
        hashmap[str]++;
        if(hashmap[str]==2)//防止同一种子树重复计算
            res.push_back(root);
        return str;
    
    vector<TreeNode*> findDuplicateSubtrees(TreeNode* root) 
        dfs(root);
        return res;
    
;

寻找重复的子树(dfs)

题目连接:

https://leetcode-cn.com/problems/find-duplicate-subtrees/

题目大意:

中文题

具体思路:

将每一颗子树转换成字符串,然后通过unordered_map去重即可(map的速度较慢)

AC代码:

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode 
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) 
 8  * ;
 9  */
10 class Solution 
11 public:
12     vector<TreeNode*> findDuplicateSubtrees(TreeNode* root) 
13         
14         vector<TreeNode*>ans;
15         unordered_map<string,int>vis;
16         
17         dfs(root, ans, vis);
18         
19         return ans;
20     
21     string dfs(TreeNode* root, vector<TreeNode*>&ans, unordered_map<string,int>&vis)
22         
23         if(root == NULL)
24             return "#";
25         
26         string tmp = to_string(root->val) + dfs(root->left, ans, vis) + dfs(root->right, ans, vis);
27         
28         if(vis[tmp] == 1) 
29             ans.push_back(root);
30         vis[tmp]++;
31         
32         return tmp;
33     
34 ;

 

以上是关于LeetCode 652. 寻找重复的子树的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 652. 寻找重复的子树

LeetCode 1475. 商品折扣后的最终价格 / 687. 最长同值路径 / 652. 寻找重复的子树

LeetCode 1475. 商品折扣后的最终价格 / 687. 最长同值路径 / 652. 寻找重复的子树

[Leetcode]652.Find Duplicate Subtrees

每日一题652. 寻找重复的子树

c_cpp 652.查找重复的子树 - 2018.9.19