Sir i've been following you for a very long time now. And you're great i wonder why you have just 1.5k subscribers. You deserve the world. Thanks!
@ankan19947 жыл бұрын
hllo sir.....ur videos are really helpful as they provide simpler and effective technique than the book and other sources.....sir pls pls give videos on linked lists ...like sorting a list,remove middle element of a list, delete first n nodes of list and append them in the last positions,union and intersection of linked lists....all ur followers will be highly obliged
@ankan19947 жыл бұрын
also pointer concept in c
@vivekanandkhyade7 жыл бұрын
Hii Ankan, sure I will add all these topics....thanks for helping me to do better...thanks a lot.
@sergeyderevyanko44576 жыл бұрын
This is impractical algorithm, because it would exhaust the stack for large deep trees. There are at least 2 ways to delete the whole tree without using stack or allocating extra memory.
@franciscodecastro95203 жыл бұрын
how?
@RebeccaLee-l4s Жыл бұрын
Thank you so much, sir. You have saved my life.
@krishnendudutta14654 жыл бұрын
In java, root=null and garbage collection does the rest.
@milimishra64477 жыл бұрын
sir..keep adding more videoos...they r really gud
@vivekanandkhyade7 жыл бұрын
Thanks MILI..!
@ismaellayth5 жыл бұрын
Thank you
@naveenbonthu7 жыл бұрын
How can you delete a binary tree with a Large number of nodes without over flowing stack ? Please do a video on this.
@vivekanandkhyade7 жыл бұрын
Yes naveen...!
@franciscodecastro95203 жыл бұрын
Nice video lord!!
@tapanjeetroy82665 жыл бұрын
Thanks for uploading it
@chandhrasekharpappu6796 жыл бұрын
Explain also insert the node
@manavswami48047 жыл бұрын
sir please make video on "Rearrange a Linked List in Zig-Zag fashion (O(n))" plz sir
@vivekanandkhyade7 жыл бұрын
very soon manav...!
@ishan_kumar5 жыл бұрын
Post complete question bro
@salmanshah9967 жыл бұрын
your smile is cute (y)
@willturner34404 жыл бұрын
×100
@ahmedessam4303 жыл бұрын
agree
@monirarad16837 жыл бұрын
you're the best
@vivekanandkhyade7 жыл бұрын
Thanks Mahabad..!
@syedmuhammadabdullah29206 ай бұрын
i dont think that this is right
@samyakjain33977 жыл бұрын
sir can u pls made program on sparse matrix
@vivekanandkhyade7 жыл бұрын
Yes Sam...very sooon..!
@samyakjain33977 жыл бұрын
And sir keep on uploading your videos so that it benefit students like me
@aryamangupta39193 жыл бұрын
An amazing way to delete any tree, using c++ without any traversal, the language will do the work for us. We can use destructor functionality. #include using namespace std; template class Tree { public: Tree* left; Tree* right; T value; Tree(T value): value(value){ } ~Tree(){ if(left){ delete left, coutleft = new Tree(10); root->right->right = new Tree(10); delete root; return 0; } and there you go no need any traversal at all :__.