Evaluate Boolean Binary Tree - Problem

You are given the root of a full binary tree with the following properties:

  • Leaf nodes have either the value 0 or 1, where 0 represents False and 1 represents True.
  • Non-leaf nodes have either the value 2 or 3, where 2 represents the boolean OR and 3 represents the boolean AND.

The evaluation of a node is as follows:

  • If the node is a leaf node, the evaluation is the value of the node, i.e. True or False.
  • Otherwise, evaluate the node's two children and apply the boolean operation of its value with the children's evaluations.

Return the boolean result of evaluating the root node.

A full binary tree is a binary tree where each node has either 0 or 2 children.

A leaf node is a node that has zero children.

Input & Output

Example 1 — OR with Mixed Children
$ Input: root = [2,1,3,null,null,0,1]
Output: true
💡 Note: Leaf nodes: 1→True, 0→False, 1→True. Right subtree: 0 AND 1 = False. Root: 1 OR False = True
Example 2 — Simple OR Operation
$ Input: root = [2,0,1]
Output: true
💡 Note: Root has OR operation with children 0 (False) and 1 (True). False OR True = True
Example 3 — Simple AND Operation
$ Input: root = [3,1,0]
Output: false
💡 Note: Root has AND operation with children 1 (True) and 0 (False). True AND False = False

Constraints

  • The number of nodes in the tree is in the range [1, 1000].
  • 0 <= Node.val <= 3
  • Every node has either 0 or 2 children.
  • Leaf nodes have a value of 0 or 1.
  • Non-leaf nodes have a value of 2 or 3.

Visualization

Tap to expand
Evaluate Boolean Binary Tree INPUT Binary Tree Structure: OR 2 True 1 AND 3 False 0 True 1 Array Representation: [2, 1, 3, null, null, 0, 1] 0,1 = Leaf (False/True) 2 = OR, 3 = AND ALGORITHM STEPS Iterative DFS with Stack 1 Initialize Stack Push root to stack 2 Post-order Traversal Process children first 3 Evaluate Leaves 0-->False, 1-->True 4 Apply Operations 2=OR, 3=AND on children Evaluation Process: AND(False,True) = False OR(True, False) = True Result: True FINAL RESULT Evaluated Tree: OR True True AND False F T Output: true OK - Verified T OR F = True Key Insight: Use iterative post-order DFS: evaluate leaf nodes first, then propagate results upward. Each non-leaf node applies its boolean operation (OR/AND) to its children's evaluated values. Time: O(n), Space: O(h) where h is tree height. Stack tracks nodes awaiting child evaluation. TutorialsPoint - Evaluate Boolean Binary Tree | Iterative DFS with Stack
Asked in
Amazon 15 Microsoft 12 Google 8 Meta 6
95.0K Views
Medium Frequency
~10 min Avg. Time
1.8K Likes
Ln 1, Col 1
Smart Actions
💡 Explanation
AI Ready
💡 Suggestion Tab to accept Esc to dismiss
// Output will appear here after running code
Code Editor Closed
Click the red button to reopen