The honesty you pour while explaining is priceless. Thanks : )
@vivek55625 жыл бұрын
That smile when he said these are over each other..9:32
@adityaaggarwal46224 жыл бұрын
bhai 🤣🤣🤣🤣🤣
@mkmayankchaudhary905 жыл бұрын
Sir....u r officially awesome..... means the ease with which u explain the stuff is superb !! Thanks again
@wshgziva99522 жыл бұрын
Wonderful explanation, can understand very clearly, thanks a lot!!
@arjungurjar46007 жыл бұрын
Great Job , Thanks for uploading.
@surbhisharma80524 жыл бұрын
Awesome explanation sir , keep uploading
@manikumar51987 жыл бұрын
sir can you explain algorithm for solving rat in a maze problem
@bmrreddy20026 жыл бұрын
Is it more efficient to do this versus using a List? using a regular level order traversal - Top View : Use a queue in the HashTable, and foreach keyvaluepair ordered by key, u just have to peek the queue. Bottom View : Use a stack in the HashTable and foreach keyvaluepair ordered by key, u just have to peek the stack.
@tejaswgaur88133 жыл бұрын
same thoughts
@rachitdiwan73124 жыл бұрын
Great work man, keep going.
@TheJazzzzzzzzzz4 жыл бұрын
very good explanation .. impressed
@param_0837 жыл бұрын
Nice explanation .Sir please upload a video on "cloning a binary tree" . thank you
@vivekanandkhyade7 жыл бұрын
yes sure parmanand..!
@gourharisharma93734 жыл бұрын
This implementation has a small bug that it is not vertical order traversal, its horizontal level traversal.
@sarikaranjitkumar1744 жыл бұрын
Thanks for the explanation!
@ayushpant61905 жыл бұрын
If 'G' node didn't have its left and right nodes and 'D' node didn't have its left and right nodes then our ideal answer should be d, b, e, f, c, g. But according to our algorithm d, b, f, c, g as our 'e' and 'f' nodes hd value is equal to 0. Can some one explain?
@gourharisharma93734 жыл бұрын
his implementation has a small bug that it is not vertical order traversal, its horizontal level traversal.
@ankitvishnoi86705 жыл бұрын
It would be very helpful if you show us the working code in any programming language at the end.
@karun46635 жыл бұрын
check out geeks for geeeks for code
@BtrmaAbhishekVerma4 жыл бұрын
Thanks. Very helpful
@premgupta91305 жыл бұрын
sir you are fantastic
@mayankgupta25434 жыл бұрын
Why do ppl ask for code. Will the mug up?? If yes how useful it is.
@goyaldeepak7026 жыл бұрын
Thanks its very helpful
@anandprakash35367 жыл бұрын
sir u r immensely requested to put the videos of hashing using code in c. It shud contain some examples.
@clashofclanss4637 жыл бұрын
Thank u very much sirrr!!!!
@tapanjeetroy82665 жыл бұрын
Thanks a lot sir
@vidyasagar84477 жыл бұрын
Hi sir, I think doing inorder traversal while printing the nodes which has left and right children as null will also work. if it works then it will be better way right?
@balakrishnanramachandran88287 жыл бұрын
good idea
@ajeyajois91866 жыл бұрын
it wont work all the times wen ur tree has only 3 nodes root,left and right then ur bottom view contains all 3 nodes but ur logic prints only left and right child hence it fails
@vishaldeshpande65146 жыл бұрын
sir ,please upload the code in the discription .thank you
@balakrishnanramachandran88287 жыл бұрын
u r gr8
@parthsoni73703 жыл бұрын
Nicee!
@tsupreetsingh4 жыл бұрын
Thanks bruh
@AddieInGermany7 жыл бұрын
Sir provide the git link for the code if you'have.
@kushagradeep19635 жыл бұрын
thnx man
@Subs12087 жыл бұрын
Why d should be part of bottom view ?
@anamikadolly46845 жыл бұрын
Please upload the code.
@ZiiiP21427 жыл бұрын
Cool. ^^
@anty_075 жыл бұрын
The solution seems incorrect for below case - a / \ b c / \ / \ d e f g hd - a = 0 b = -1 c = 1 d = -2 e = 0 f =0 g = 2 By your algo, dbfcg should print, which in correct.
@Ankit135557 жыл бұрын
but sir if we also have to print nodes at same horizontal distance ...then do we need to keep track of vertical distance too?? If yes how?????
@vivekanandkhyade7 жыл бұрын
we only need horizontal distance......Thanks Ankit.......i will discuss more on this problem if you want.