Day 310/365 - Check if Tree is Isomorphic | JAVA | C++ | GFG POTD | DSA SHEET

  Рет қаралды 950

Akshay Anil

Akshay Anil

Күн бұрын

Пікірлер: 3
@dayashankarlakhotia4943
@dayashankarlakhotia4943 Жыл бұрын
Public class solution { boolean is Isomorphic (Node root 1,Node root2){ if(root1==null &&root2 ==null) return true; if(root1==null || root2 ==null) return false; if(root1. data!=root2. data) return false; return (Isomorphic (root1. left,root2. left)&&(root1. right,root2. right ))||(is Isomorphic (root1. left,root2. right)&&(root1. right,root2. left)); thanks again 🎉❤😮
@starkendeavours7072
@starkendeavours7072 Жыл бұрын
can we use hashmap to store the mapping between 2 trees? and then dfs?
@Seriouslyyy109
@Seriouslyyy109 Жыл бұрын
TLE
СКОЛЬКО ПАЛЬЦЕВ ТУТ?
00:16
Masomka
Рет қаралды 3,3 МЛН
I thought one thing and the truth is something else 😂
00:34
عائلة ابو رعد Abo Raad family
Рет қаралды 5 МЛН
Amazing remote control#devil  #lilith #funny #shorts
00:30
Devil Lilith
Рет қаралды 16 МЛН
Check If Binary Tree Is Isomorphic
13:20
CppNuts
Рет қаралды 1,4 М.
L15. Check for Balanced Binary Tree | C++ | Java
12:30
take U forward
Рет қаралды 357 М.
Maximum Index | GFG POTD 5 March 2024 | JAVA | C++
12:42
CodeCraft
Рет қаралды 156
Check whether BST contains Dead End | BST | Love Babbar DSA Sheet | Amazon🔥
20:55
Yogesh & Shailesh (CodeLibrary)
Рет қаралды 12 М.
L29. Children Sum Property in Binary Tree | O(N) Approach | C++ | Java
16:13