Sir you are great. My all doubt clear when I watch your lecture 😊
@rahulsaha71315 жыл бұрын
Sir, please make videos on Circular Queue and Double Ended Queue(Deque).
@lavanyac7803 жыл бұрын
Thank you so much sir,your way of teaching is very good and clear
@siddarthaarruri85293 жыл бұрын
All clear sir... Thanks a lot 🙏
@BrainyBuffoon Жыл бұрын
best ever explanation
@ashu_bangtanophile5 ай бұрын
sir, can you please implement them in compiler? i am getting errors... It will help us to understand more.
@krishnenthuv55444 жыл бұрын
Perfect class...Thank you sir..for spending Ur precious time...
@hadirezaie84735 жыл бұрын
Thanks, sir. your explanation was great.
@bhargavireddy58923 жыл бұрын
Thank you sir.your explanation is easy to understand 👌
@jamesroy90275 жыл бұрын
Thanks alot Sir please make video on Problem Solving for GATE.... Please cover tough question
@yamunareddy36543 жыл бұрын
Hi sir, I'm a new subscriber! Pls upload a video on queue types-Circular,DEqueue operations i.e,,push ,pop,eject,inject operations.. it's hard to write a code for this operations..Thanks in Advance...
@jay_chowdary75973 жыл бұрын
Push and pop operation is present in stacks we call them as ENQUEUE AND DEQUEUE in queues
@arnabroy48705 жыл бұрын
Please show the implementation in a compiler. Please Sir help!!!
@kingfisher37914 жыл бұрын
Creating is just similar to normal linked list, there we used head and tail,,here we are using front and rear
@santhoshbaride57283 жыл бұрын
Everything is good but If you show a sample program it's more clear for me
@arnabroy48705 жыл бұрын
Please put stack using queue. And some more videos on Data structures. Please Sir.
@s.kavitha2015 жыл бұрын
Awesome sir😇
@vishnuvardhan26872 жыл бұрын
Superb sir
@sougotasaha5253 жыл бұрын
Very helpful
@Pranathib2345Ай бұрын
thank you sir
@mohammadsonu3884 жыл бұрын
3:08 , real video starts here
@chaithanyapagadala36403 жыл бұрын
Thank you so much sir your explanation is very helpful for me but your board is not clear sir
@diwakaranand31145 жыл бұрын
Sir please make circular queue implementation (push & Pop)
@sushanthreddy5124 жыл бұрын
Sir give the full code in description please...
@shimulbhattacharjee95605 жыл бұрын
Sir, when I'm deleting all the elements from queue and then again trying to insert a new element, when displayed it's showing queue is empty.
@kaustubhpaturi48014 жыл бұрын
when you delete all the elements, that means the queue is empty, right? if you want to insert into the node after deleting too, then, you need to change the "if " condition. paste the insertion (enqueue) procedure/code into the if condition where you check if the queue is empty or not.
@deveshprakash99595 жыл бұрын
Please post circular queue also sir
@viswam4462 жыл бұрын
👍👍👍
@Rajamani-px4ch3 жыл бұрын
Sir can u say once implementation of queues using pointers..
@vivekvardhanreddy8114 жыл бұрын
Make a video on circular queue
@poojithanaramala3 жыл бұрын
Tqqqqqq uuuuuuuuu sirrrrrrrrrrrrrrrrrrrr
@shiva-bg6ve5 жыл бұрын
Sir u have used temp in displaying.but can't we display by writing only the condition in the while loop or for loop
@supratimnayek27765 жыл бұрын
in that case u have to directly use top variable...we dont want to change the top thats why we use temp variable...but surely u can do that without using temp
@Sense_Creator63225 жыл бұрын
Tq u so much sir
@beahumanloveyouall53555 жыл бұрын
sir how rear is not equal to NULL its show already NULL but ur saying its not equal to NULL can u explain this one
@botlaramu72593 жыл бұрын
If(Front==null)
@skwaseem13213 жыл бұрын
sir is representation and implementation same?
@yamahaers8132 жыл бұрын
Sir doubt only linked list total not understanding
@shimulbhattacharjee95605 жыл бұрын
I can't figure out how to solve this problem. Plz help.
@harshjain87645 жыл бұрын
sir please reply me how these front , rear , head ,tail containing NULL by default ,
@sundeepsaradhi5 жыл бұрын
HI we have to initialize all these with null.
@harshjain87645 жыл бұрын
@@sundeepsaradhi sir but without initializing it with null , it is producing correct output , so is it necessary to write (struct node *head = NULL) or *head will hold null only at starting
@harshjain87645 жыл бұрын
@@sundeepsaradhi i got confused because you have not initialize it with null in any video , and i compiled all link list code without assigning head tail temp to null but it is still working how ?
@dharma34045 жыл бұрын
@@harshjain8764 any variable declared as global gets null by default
@thanmaibhaskar77492 жыл бұрын
Peek is not explained😔😔😔
@vinothvk27115 жыл бұрын
In que u r using *New (pointer) but in stack U r using New (no pointer)??? Whyy bro
@sundeepsaradhi5 жыл бұрын
Hi Sorry I didn't get your doubt Pls elobarate your doubt
@harshjain87645 жыл бұрын
bro he forgotted to add *new as a pointer in stack implementation using linked list , that new is pointer only .
@amruthdr83645 жыл бұрын
@@sundeepsaradhi sir, actually it mean you didn't used the *new,*temp,*top; in stack but you used *new,*temp in queue......