2641. Cousins in Binary Tree II - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

Given the root of a binary tree, update the tree so that for every node (except the root) its new value becomes the sum of all values of nodes on the same level excluding the node’s siblings (i.e. nodes sharing the same parent). For the root, set the value to 0.

Example 1

  • Input:
    A binary tree represented as:
           5
         /   \
        4     9
       / \   / \
      1  10  7   3
    
  • Output:
    The modified tree becomes:
           0
         /   \
        0     0
       / \   / \
     10  10 11  11
    
  • Explanation:
    • The root (5) becomes 0.
    • Level 1: Nodes 4 and 9 are siblings. The total at level 1 is 4 + 9 = 13; however, since each node’s “siblings sum” equals the level sum, both become 13 − 13 = 0.
    • Level 2:
      • For node 1 and its sibling 10 (children of 4), the level sum is 1 + 10 + 7 + 3 = 21. Their parent’s children sum is 1 + 10 = 11, so each becomes 21 − 11 = 10.
      • For node 7 and 3 (children of 9), the parent’s children sum is 7 + 3 = 10, so each becomes 21 − 10 = 11.

Example 2

  • Input:
           1
         /   \
        2     3
    
  • Output:
           0
         /   \
        0     0
    
  • Explanation:
    • Level 0: Root 1 → 0.
    • Level 1: Nodes 2 and 3 are siblings; level sum = 2 + 3 = 5, and their parent’s sum is 5. So both become 5 − 5 = 0.

Example 3

  • Input: A single-node tree:
      7
    
  • Output:
      0
    
  • Explanation:
    There are no cousins for the only node, so it becomes 0.

Constraints:

  • The number of nodes in the tree is in the range [1, 10⁵].
  • Node values can be any integer.
  • The tree is given in a standard binary tree format (each node has at most two children).

Hints

  1. Level Order Traversal:
    Think about using breadth-first search (BFS) to traverse the tree level by level. This way, you can compute the total sum of values at each level easily.

  2. Sibling Exclusion:
    For a node (other than the root), note that its “cousin sum” is simply the total sum at its level minus the sum of its siblings (i.e. the children of its parent). Be sure to calculate these sums using the original values before any are replaced.

Approaches

1. Brute Force Approach

Idea:
For each node (except the root), perform a separate level order traversal to find all nodes at the same level, then subtract the sum of the node’s siblings.

Steps:

  • For every node, run a level order traversal to compute the level sum.
  • Find the parent of the node and compute the sum of values of all its children.
  • Set the node’s new value = (level sum) − (sum of the node’s siblings, including itself).

Drawbacks:

  • This approach repeats work (traversing levels multiple times).
  • It leads to an inefficient solution (O(n²) time in the worst case), which is not practical for large trees.

2. Optimal Approach Using a Single BFS Traversal

Idea:
Perform one level order traversal (using BFS) and for each level, do the following:

  • Compute the total sum of values at that level.
  • For each parent in that level, compute the sum of its children (using the original node values).
  • For every child node, update its value to be (total level sum) minus (the sum of its own siblings, which is the sum of children of its parent).

Steps:

  1. Use a queue to perform BFS on the tree.
  2. For each level:
    • First, compute the level_sum of all nodes.
    • Then, for each node in that level, if it has children, record the sum of its children.
    • In the next iteration (or by using an auxiliary structure), assign each child’s new value as:
      new_value(child) = level_sum (of child’s level) − (sum of children of its parent)
  3. Special case: For the root node, set its value to 0.

Benefits:

  • Only one traversal of the tree (O(n) time).
  • Uses extra space to store sums per level and per parent (O(n) space).

Code Implementation

Python Code

Python3
Python3

. . . .

Java Implementation

Java
Java

. . . .

Step-by-Step Walkthrough & Visual Example

Consider the tree from Example 1:

         5
       /   \
      4     9
     / \   / \
    1  10  7   3
  1. Level 0:

    • Nodes: [5]
    • Level sum = 5.
    • Root (5) becomes 0.
  2. Level 1:

    • Nodes: [4, 9]
    • Level sum = 4 + 9 = 13.
    • For node 4: Its parent (root) has children sum = 4 + 9 = 13.
      → New value for 4 = 13 − 13 = 0.
    • For node 9: Similarly, new value = 13 − 13 = 0.
  3. Level 2:

    • Nodes: [1, 10, 7, 3]
    • Level sum = 1 + 10 + 7 + 3 = 21.
    • For node 1 and 10 (siblings, children of 4):
      Parent’s children sum = 1 + 10 = 11.
      → New value for each = 21 − 11 = 10.
    • For node 7 and 3 (siblings, children of 9):
      Parent’s children sum = 7 + 3 = 10.
      → New value for each = 21 − 10 = 11.

The tree after updating:

         0
       /   \
      0     0
     / \   / \
   10  10 11  11

Complexity Analysis

  • Time Complexity:
    The optimal approach makes one complete BFS traversal of the tree. Every node is visited once during level order traversal, and for each level, a constant amount of work is done for each node. Thus, the time complexity is O(n), where n is the number of nodes.

  • Space Complexity:
    We use extra space for the BFS queue, the level list, and the level sums. In the worst case (a completely balanced tree), the maximum number of nodes stored in a level is O(n) in the last level. Therefore, the space complexity is O(n).

Common Mistakes

  1. Updating Node Values In-Place:
    If you update the node values while still using them to calculate level sums for future nodes, you may end up using modified values instead of original ones. It’s crucial to compute all level sums using the original values first.

  2. Not Handling the Root Separately:
    The root has no cousins, so its new value should always be set to 0. Forgetting this can lead to incorrect results.

  3. Improper Sibling Identification:
    Be sure to correctly identify a node’s siblings. Siblings are exactly the children of the same parent, so summing them up accurately is key.

Edge Cases & Alternative Variations

  • Edge Cases:

    • Single Node: Only one node exists, so its new value should be 0.

    • Incomplete Levels: When a level contains only one node, its new value becomes 0 because there are no other nodes (cousins) on that level.

    • Skewed Trees: Trees that are essentially linked lists (every node has only one child) will have each node’s cousin sum as 0 because there are no siblings at any level.

  • Alternative Variations:

    • Finding Cousin Nodes: Instead of summing cousin values, you might be asked to return a list of cousin nodes for a given target.

    • Multiple Queries: Sometimes, the problem might be extended to answer multiple queries regarding cousin sums for different nodes, requiring preprocessing.

    • Modified Definition of Cousins: In some problems, the definition of cousins might include additional conditions, like being within a certain subtree or having specific values.

  • Cousins in Binary Tree (Simple Check): Determine if two nodes in a binary tree are cousins.

  • Level Order Traversal: Practice traversing trees level by level.

  • Tree Sum Problems: Problems that involve computing sums of nodes at each level.

  • Subtree Queries: Problems that ask you to compute values based on subtree properties (like subtree sum, maximum subtree sum, etc.).

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Find all files containing a specific text (string) on Linux?
Does Splunk use SQL?
How many threads can run concurrently?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;