forked from liuyubobobo/Play-Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
56 lines (42 loc) · 1.17 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/// Source : https://leetcode.com/problems/find-duplicate-subtrees/description/
/// Author : liuyubobobo
/// Time : 2018-10-05
#include <iostream>
#include <vector>
#include <unordered_map>
using namespace std;
/// Serializae Binary Tree
/// Time Complexity: O(n^2)
/// Space Complexity: 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*> findDuplicateSubtrees(TreeNode* root) {
vector<TreeNode*> res;
unordered_map<string, int> map;
dfs(root, map, res);
return res;
}
private:
string dfs(TreeNode* root, unordered_map<string, int>& map,
vector<TreeNode*>& res){
if(!root)
return "(null)";
string left = dfs(root->left, map, res);
string right = dfs(root->right, map, res);
string hashcode = "(" + left + ")" + to_string(root->val) + "(" + right + ")";
if(map[hashcode] == 1)
res.push_back(root);
map[hashcode] ++;
return hashcode;
}
};
int main() {
return 0;
}