I did it, so happy that I solved it before watching video.
@nomanraihanofficial3 жыл бұрын
Love you bro and pray from you from the bottom of my heart.. You have opened my eyes.
@amalasebastian99682 жыл бұрын
Great video ,thank you so much sir ,do not leave teaching!
@HelloWorldbyprince2 жыл бұрын
Just support me I will never leave teaching
@udaytewary38092 жыл бұрын
Really thankyou bhaiya aapka samjhane ka tarika aisa h ki bhaut lucid way ya Asan way me samaj me aya although maine level order se socha tha ki value ko swap karu pr kaise karu samaj me nhi aa raha tha but apke stack wale solution se idea aa gya mujhe iske liye dil se dhanyawad bhaiya😍😍❤️🔥❤️🔥❤️🔥
@HelloWorldbyprince2 жыл бұрын
Thanks to u for this response Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
@divyansh13912 жыл бұрын
sb samjh aa jata hai bhaiya....
@HelloWorldbyprince2 жыл бұрын
waoo yaar i am happy
@tusharrastogi74902 жыл бұрын
Just played the video and you insisted to try it on your own, and yeah.. its done. 1 like for that
@HelloWorldbyprince2 жыл бұрын
Waooo thanks meri baat maankar question solve karne ke liye nice work
@ashwinvarma93493 жыл бұрын
Good to see you again😄
@HelloWorldbyprince3 жыл бұрын
😊
@gokulnaathb26272 жыл бұрын
Samjh m aa rha h, bhaiya, thank you so much
@HelloWorldbyprince2 жыл бұрын
Your welcome dear
@priyabansal99113 жыл бұрын
Thank you Prince for the video and hope you are fine now.
@HelloWorldbyprince3 жыл бұрын
All good now Thanks or asking
@nopecharon2 жыл бұрын
Your explanation is best
@HelloWorldbyprince2 жыл бұрын
Thanks a lot 😊
@AnkitSingh-nm5wz3 жыл бұрын
Great video...really helped me!
@HelloWorldbyprince3 жыл бұрын
Thanks for the support 💗
@swastikkumar97772 жыл бұрын
Loved the way you explained.
@HelloWorldbyprince2 жыл бұрын
Thanks a lot 😊
@Sheer_life99802 жыл бұрын
wow osm way..
@HelloWorldbyprince2 жыл бұрын
Yup, thanks buddy 😊
@codewith_me0710 күн бұрын
Sir we can swap directly left and right then call left and right return roo
@anonymous0902 жыл бұрын
Thank you Bhaiya, ache se samajh agya
@HelloWorldbyprince2 жыл бұрын
Thanks yaar aise tumhara name kya hai ?
@anonymous0902 жыл бұрын
@@HelloWorldbyprince Rashi Shukla 😄
@Alokkumar-xu8sf3 жыл бұрын
aacha laga
@TheStarboyVlog Жыл бұрын
sir yeh question sayad queue se banega stack ki jagha
@shaantyagi21872 жыл бұрын
C++ solution: void invert(TreeNode* root){ if(root==NULL){ return; } // jaise hum log bubble sort main swap karte the ki ek temp variable bana ke usme value // rakh lete the waise hi yahan pe kar sakte hai TreeNode* left = root->left; root->left = root->right; root->right = left; invert(root->left); invert(root->right); } TreeNode* invertTree(TreeNode* root) { invert(root); return root; }
@HelloWorldbyprince2 жыл бұрын
Amazing 😻 brother
@masudalammolla3400 Жыл бұрын
If we use level order traversal approcah and every level before push it to the ans vector if we do reverse of the temp vector then push it
@sohebshaikh33443 жыл бұрын
Honestly Bhaiya maine 2 no approch socha tha vector wala aur swap wala bhi vector run bhi kiya aur samjh gya wo galat but in Swap code m baar baar error mil rha tha
@jayanth11913 жыл бұрын
Sir at 12:21 top must be 3 isn't it? Please explain it sir
@rajchinagundi74982 жыл бұрын
class Solution { public: TreeNode* invertTree(TreeNode* root) { if(root!=NULL){ swap(root->left,root->right); invertTree(root->left); invertTree(root->right); } return root; } }; I did it by this way
@HelloWorldbyprince2 жыл бұрын
amazing bro
@ayushnamdev63263 жыл бұрын
bhiya full samajh aara h
@shashwatsingh2532 жыл бұрын
Bhaiya I did by the help of Level Order Traversal class Solution { public: TreeNode* invertTree(TreeNode* root) { if(!root) return root; queue q; q.push(root); while(!q.empty()) { TreeNode* ptr = q.front(); q.pop(); if(ptr->left && !ptr->right || !ptr->left && ptr->right || ptr->left && ptr->right) { swap(ptr->left,ptr->right); } if(ptr->left) q.push(ptr->left); if(ptr->right) q.push(ptr->right); } return root; } };
@HelloWorldbyprince2 жыл бұрын
Amazing 🤩🤩
@NITianMonika Жыл бұрын
Simple think about first three node baki sb recursion kar dega: 6line code in c++