...

>

Invert Binary Tree

Invert Binary Tree

Description

In this lesson, your task is to invert a given a binary ...

Files
main.cpp
TreeNode.h
C++
Python
Java
JS
#include "TreeNode.h"
TreeNode* invertTree(TreeNode* root) {
return root;
}
Invert binary tree
...

Access this course and 1200+ top-rated courses and projects.

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy