Apologies for the delay in this video, I was working on an exciting new thing which we'll launch soon. Stay tuned and thanks for Supporting 🙌🏻
@oppoplayer72033 жыл бұрын
Bhayia please launch c++ course and how can kids Learn programming and these platforms like whitehatjr are making fool to us by the name of coding
@mrrishiraj883 жыл бұрын
No worries! We are sure that you always utilise time well. You take great care of our time as well as of your own time. Keep on earning love and achieving higher successes! 👍👍
@SaurabhKumar-oz4gk3 жыл бұрын
Bhaiya ye dsa complete kab hogga??
@ismailhossain47303 жыл бұрын
Finally after 2 weeks.... thanks for the tutorial. Love from 🇧🇩
@ashasaideepika1530 Жыл бұрын
bhaiya i tried this same code in leetcode but for one test case it is showing as found a cycle in the tree what should i do to resolve that issue
@kalpeshsharma34463 жыл бұрын
For every question please give a short brief about iterative, recursively approach, time, space complexity and how much it can be optimize.
@codetochange82 жыл бұрын
Thanks Anuj Bhaiya for this amazing explanation...
@jayeshkaushik29753 жыл бұрын
U r never too late bro, thanks for the intersting videos💯
@biswajitsaha67732 жыл бұрын
This is the best solution for Binary Tree to a Doubly Linked List conversion..thank you Anuj Bhaiya for the awesome explanation
@ShadabChoudhary-s8v11 ай бұрын
Really nice and easy to understand approach
@prnk1392 жыл бұрын
thanks for posting with such an amazing explanation!!
@er.skelafahmed3 жыл бұрын
Eagerly waiting for this bhiya... Please upload 2 videos in a week atleast. Humble request 😀
@prnk1392 жыл бұрын
good way of teaching!
@jainikprajapati16322 жыл бұрын
Thank you for your efforts 😊 Good video
@9-1939 Жыл бұрын
That was very simple 👌🔥
@tallalhabib45262 жыл бұрын
Excellent Demonstration
@Sourabh__Chaurasiya3 жыл бұрын
Ham to anee se hi khush hn
@sagarpanwar2724 Жыл бұрын
Very underrated video. But would have been better if the video contained code as well to cross check
@ANKITCHAUHAN-do2ug2 жыл бұрын
thanx for the solution SO SIMPLE
@TheMdaliazhar8 ай бұрын
Good explanation.
@ritikshandilya70758 ай бұрын
great explanation
@rishikeshkumar86522 жыл бұрын
Here the binary tree is converted to Doubly linked list in inorder fashion but can we convert it to doubly linked list of pre-order and post-order fashion ? I cannot find the code for the above two ....
@sriramulavenkatakrishnakar96153 жыл бұрын
Happy ur return
@sriramulavenkatakrishnakar96153 жыл бұрын
Thought u left course in middle
@sriramulavenkatakrishnakar96153 жыл бұрын
@anuj bhaiya love u 3000
@sidharthmak Жыл бұрын
Appreciate the video, sir! But in the code you have written a void function but are returning a NULL value in base case. Would be great if you could correct that!
@dongarevikramnarayan179 Жыл бұрын
nice explanation sir
@atuldwivedi76772 жыл бұрын
Thanks a lot Bhaiya 🙏🙏
@laveshgarg21893 жыл бұрын
Amazing video bhaiya maza aa gaya
@Explore_with_anish3 жыл бұрын
Bro... return type is void but you vare returning null ....it should be only return.
@PankajSingh-vi3fy2 жыл бұрын
Exactly... for that you've to pass the prev variable to the recursive function
@chaitanyashekhardeo42693 жыл бұрын
Please jldi course complete kr do. Main aap hi per depend rehta
@maryamhussain12373 жыл бұрын
Haa. Bhaiyya please jaldi course complete kardo
@harshgarg5943 жыл бұрын
Great content in free Thanks bhaiya
@sainath51312 жыл бұрын
Must watch video
@lofibeats23442 жыл бұрын
very well explained
@sagarsondur3 жыл бұрын
Bhaiya is back!!
@reenayadav84683 жыл бұрын
Atleast two video one week me upload karo please🙏🙏 it's my humble request sir
@unknown30778 Жыл бұрын
Make more vedio on tree and graph
@Manojkumar156293 жыл бұрын
Love you bhaiya ❣️
@arshdeep011 Жыл бұрын
thanks
@pinkkitty6553 Жыл бұрын
void method par null kese return kar sakte hai ??
@prnk1392 жыл бұрын
it is really nice but try to include complexity analyis in the video!
@sriramulavenkatakrishnakar96153 жыл бұрын
@anuj bhaiyya
@baldevgogalyofficial32172 жыл бұрын
Void mein aap null return kyun kr rhe ho 'error aa rha h , code run nhi kr rha
@bharatns5982 жыл бұрын
What is root.left why we using
@Aditya85z Жыл бұрын
Sir yh code run hi nhi kr rha Aspke karaye huye mostly code run nhi krte
@Aditya85z Жыл бұрын
Khi na khi error aa hi rhi h
@neelamjoon5095 Жыл бұрын
but how to print that list now??
@arpanmaheshwari22903 жыл бұрын
Hum first
@sriramulavenkatakrishnakar96153 жыл бұрын
Noo mee
@AI_for_funn2 жыл бұрын
class Solution { //Function to convert binary tree to doubly linked list and return it. Node head, prev; Node bToDLL(Node root) { if(root==null) return null; bToDLL(root.left); if(prev==null){ head=root; prev=root; // prev=root; } else { prev.right=root; root.left=prev; prev=root; } bToDLL(root.right); return head; } }
@sudeeptaadas033 жыл бұрын
Where can I solve questions on DSA?
@codetochange82 жыл бұрын
GeekfForGeeks or LeetCode
@sumitkanth53493 жыл бұрын
Gsoc 2022 pr video bnao from scratch Plzzzz..... Mujhe Javascript aati h
@snehaltripathi5763 Жыл бұрын
GFG solution : class Solution { Node*head = NULL; Node*prev=NULL; private: void convertToDLL(Node*root) { if(root==NULL) return; convertToDLL(root->left); if(prev==NULL) head = root; else { root->left = prev; prev->right = root; } prev=root; convertToDLL(root->right); } public: //Function to convert binary tree to doubly linked list and return it. Node * bToDLL(Node *root) { if(root==NULL ) return NULL; convertToDLL(root); return head; } };