Mutating counts without cleanup
Wrong move: Zero-count keys stay in map and break distinct/count constraints.
Usually fails on: Window/map size checks are consistently off by one.
Fix: Delete keys when count reaches zero.
Move from brute-force thinking to an efficient approach using hash map strategy.
Given the root of a binary tree, return all duplicate subtrees.
For each kind of duplicate subtrees, you only need to return the root node of any one of them.
Two trees are duplicate if they have the same structure with the same node values.
Example 1:
Input: root = [1,2,3,4,null,2,4,null,null,4] Output: [[2,4],[4]]
Example 2:
Input: root = [2,1,1] Output: [[1]]
Example 3:
Input: root = [2,2,2,3,null,3,null] Output: [[2,3],[3]]
Constraints:
[1, 5000]-200 <= Node.val <= 200Problem summary: Given the root of a binary tree, return all duplicate subtrees. For each kind of duplicate subtrees, you only need to return the root node of any one of them. Two trees are duplicate if they have the same structure with the same node values.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Hash Map · Tree
[1,2,3,4,null,2,4,null,null,4]
[2,1,1]
[2,2,2,3,null,3,null]
serialize-and-deserialize-binary-tree)serialize-and-deserialize-bst)construct-string-from-binary-tree)delete-duplicate-folders-in-system)Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #652: Find Duplicate Subtrees
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
private Map<String, Integer> counter;
private List<TreeNode> ans;
public List<TreeNode> findDuplicateSubtrees(TreeNode root) {
counter = new HashMap<>();
ans = new ArrayList<>();
dfs(root);
return ans;
}
private String dfs(TreeNode root) {
if (root == null) {
return "#";
}
String v = root.val + "," + dfs(root.left) + "," + dfs(root.right);
counter.put(v, counter.getOrDefault(v, 0) + 1);
if (counter.get(v) == 2) {
ans.add(root);
}
return v;
}
}
// Accepted solution for LeetCode #652: Find Duplicate Subtrees
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
func findDuplicateSubtrees(root *TreeNode) []*TreeNode {
var ans []*TreeNode
counter := make(map[string]int)
var dfs func(root *TreeNode) string
dfs = func(root *TreeNode) string {
if root == nil {
return "#"
}
v := strconv.Itoa(root.Val) + "," + dfs(root.Left) + "," + dfs(root.Right)
counter[v]++
if counter[v] == 2 {
ans = append(ans, root)
}
return v
}
dfs(root)
return ans
}
# Accepted solution for LeetCode #652: Find Duplicate Subtrees
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def findDuplicateSubtrees(
self, root: Optional[TreeNode]
) -> List[Optional[TreeNode]]:
def dfs(root):
if root is None:
return '#'
v = f'{root.val},{dfs(root.left)},{dfs(root.right)}'
counter[v] += 1
if counter[v] == 2:
ans.append(root)
return v
ans = []
counter = Counter()
dfs(root)
return ans
// Accepted solution for LeetCode #652: Find Duplicate Subtrees
// Definition for a binary tree node.
// #[derive(Debug, PartialEq, Eq)]
// pub struct TreeNode {
// pub val: i32,
// pub left: Option<Rc<RefCell<TreeNode>>>,
// pub right: Option<Rc<RefCell<TreeNode>>>,
// }
//
// impl TreeNode {
// #[inline]
// pub fn new(val: i32) -> Self {
// TreeNode {
// val,
// left: None,
// right: None
// }
// }
// }
use std::cell::RefCell;
use std::collections::HashMap;
use std::rc::Rc;
impl Solution {
fn dfs(
root: &Option<Rc<RefCell<TreeNode>>>,
map: &mut HashMap<String, i32>,
res: &mut Vec<Option<Rc<RefCell<TreeNode>>>>,
) -> String {
if root.is_none() {
return String::from('#');
}
let s = {
let root = root.as_ref().unwrap().as_ref().borrow();
format!(
"{},{},{}",
root.val.to_string(),
Self::dfs(&root.left, map, res),
Self::dfs(&root.right, map, res)
)
};
*map.entry(s.clone()).or_insert(0) += 1;
if *map.get(&s).unwrap() == 2 {
res.push(root.clone());
}
return s;
}
pub fn find_duplicate_subtrees(
root: Option<Rc<RefCell<TreeNode>>>,
) -> Vec<Option<Rc<RefCell<TreeNode>>>> {
let mut map = HashMap::new();
let mut res = Vec::new();
Self::dfs(&root, &mut map, &mut res);
res
}
}
// Accepted solution for LeetCode #652: Find Duplicate Subtrees
/**
* Definition for a binary tree node.
* class TreeNode {
* val: number
* left: TreeNode | null
* right: TreeNode | null
* constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
* }
*/
function findDuplicateSubtrees(root: TreeNode | null): Array<TreeNode | null> {
const map = new Map<string, number>();
const res = [];
const dfs = (root: TreeNode | null) => {
if (root == null) {
return '#';
}
const { val, left, right } = root;
const s = `${val},${dfs(left)},${dfs(right)}`;
map.set(s, (map.get(s) ?? 0) + 1);
if (map.get(s) === 2) {
res.push(root);
}
return s;
};
dfs(root);
return res;
}
Use this to step through a reusable interview workflow for this problem.
BFS with a queue visits every node exactly once — O(n) time. The queue may hold an entire level of the tree, which for a complete binary tree is up to n/2 nodes = O(n) space. This is optimal in time but costly in space for wide trees.
Every node is visited exactly once, giving O(n) time. Space depends on tree shape: O(h) for recursive DFS (stack depth = height h), or O(w) for BFS (queue width = widest level). For balanced trees h = log n; for skewed trees h = n.
Review these before coding to avoid predictable interview regressions.
Wrong move: Zero-count keys stay in map and break distinct/count constraints.
Usually fails on: Window/map size checks are consistently off by one.
Fix: Delete keys when count reaches zero.
Wrong move: Recursive traversal assumes children always exist.
Usually fails on: Leaf nodes throw errors or create wrong depth/path values.
Fix: Handle null/base cases before recursive transitions.