Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Reverse Binary Tree
00:00
5 left

Reverse Binary Tree

EasyPython

Problem

Reverse a binary tree in O(n) time.

Represent each node as [value, left, right], where left and right are child nodes or None. Implement reverse_binary_tree(root) to mirror the tree in place and return root. The solution must visit each node once.

Input and Output

root is a nested node structure or None. Return the same structure after swapping the left and right subtrees of every node.

Constraints

  • 0 <= n <= 10^5, where n is the number of nodes
  • Each node is represented as [value, left, right]
  • Node values are integers
  • The input is a valid binary tree

Function Signature

def reverse_binary_tree(root):
Interviewer

Your question is Reverse Binary Tree. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.