-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy path0572-subtree-of-another-tree.js
More file actions
138 lines (104 loc) · 3.34 KB
/
0572-subtree-of-another-tree.js
File metadata and controls
138 lines (104 loc) · 3.34 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/**
* https://leetcode.com/problems/subtree-of-another-tree/
* @param {TreeNode} root
* @param {TreeNode} subRoot
* @return {boolean}
*/
var isSubtree = function (root, subRoot) {
if (!root) return false;
if (isSame(root, subRoot)) return true;
const hasLeftTree = isSubtree(root.left, subRoot);
const hasRightTree = isSubtree(root.right, subRoot);
return hasLeftTree || hasRightTree;
};
const isSame = (root, subRoot) => {
const hasReachedEnd = !(root && subRoot);
if (hasReachedEnd) return root === subRoot;
const isMismatch = root.val !== subRoot.val;
if (isMismatch) return false;
const isLeftSame = isSame(root.left, subRoot.left);
const isRightSame = isSame(root.right, subRoot.right);
return isLeftSame && isRightSame;
};
const hash = (val) =>
require('crypto').createHash('md5').update(val).digest('hex');
const merkle = (root) => {
if (!root) return '#';
const { left, val, right } = root;
const leftMerkle = merkle(left);
const rightMerkle = merkle(right);
const merkleVal = [leftMerkle, val, rightMerkle].join('');
const merkleHash = hash(merkleVal);
root.merkle = merkleHash;
return root.merkle;
};
const search = (root, subRoot) => {
if (!root) return false;
const hasSamePath = root.merkle === subRoot.merkle;
if (hasSamePath) return true;
const left = search(root.left, subRoot);
const right = search(root.right, subRoot);
return left || right;
};
var isSubtree = function (root, subRoot) {
[root, subRoot].forEach(merkle);
return search(root, subRoot);
};
const hashify = (root, hash, postOrderKey) => {
if (!root) return '#';
const left = hashify(root.left, hash, postOrderKey);
const right = hashify(root.right, hash, postOrderKey);
const key = [left, root.val, right].join('');
if (!hash.has(key)) {
hash.set(key, postOrderKey[0]);
postOrderKey[0]++;
}
return hash.get(key);
};
var isSubtree = function (root, subRoot, hash = new Map(), postOrderKey = [0]) {
hashify(root, hash, postOrderKey);
const hashKey = [
hashify(subRoot.left, hash, postOrderKey),
subRoot.val,
hashify(subRoot.right, hash, postOrderKey),
].join('');
return hash.has(hashKey);
};
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* https://leetcode.com/problems/subtree-of-another-tree/
* @param {TreeNode} root
* @param {TreeNode} subRoot
* @return {boolean}
*/
var isSubtree = function (root, subRoot) {
if (!subRoot) {
return true;
} else if (!root) {
return false;
} else if (isSameTree(root, subRoot)) {
return true;
}
const leftResult = isSubtree(root.left, subRoot);
const rightResult = isSubtree(root.right, subRoot);
return leftResult || rightResult;
};
function isSameTree(root, subRoot) {
if (!root && !subRoot) {
return true;
} else if (!root || !subRoot) {
return false;
} else if (root.val !== subRoot.val) {
return false;
}
const leftRes = isSameTree(root.left, subRoot.left);
const rightRes = isSameTree(root.right, subRoot.right);
return leftRes && rightRes;
}