介紹
這里相同意味著結構和值都處于相同的位置。
為了實現這一點,我們需要使用 dfs 算法,這樣它也會檢查深度。
使用 bfs 算法無法實現這一點。
所以這里我使用有序遍歷來得到結果
class Node {
constructor(data)
{
this.left = null;
this.right = null;
this.data = data;
}
}
let root1, root2;
// left root right
const checkIdentical = (binaryTree1, binaryTree2) => {
let tree = '';
const helper = (root) => {
if (root == null) {
return tree;
}
helper(root.left);
tree += root.data;
helper(root.right);
return tree;
};
const tree1 = helper(binaryTree1);
tree = '';
const tree2 = helper(binaryTree2);
if (tree1 === tree2) {
console.log('Both are identical');
} else {
console.log('Not Identical');
}
}
root1 = new Node(1);
root1.left = new Node(2);
root1.right = new Node(3);
root1.left.left = new Node(4);
root1.left.right = new Node(5);
root2 = new Node(1);
root2.left = new Node(2);
root2.right = new Node(3);
root2.left.left = new Node(4);
root2.left.right = new Node(5);
checkIdentical(root1, root2);
/*
Both are identical
*/
登錄后復制
有任何問題請隨時聯系我






