QUEUE IMPLEMENTATION USING LINKED LIST - DATA STRUCTURES

  Рет қаралды 61,951

Sundeep Saradhi Kanthety

Sundeep Saradhi Kanthety

Күн бұрын

Пікірлер: 50
@VijayPal-vx9es
@VijayPal-vx9es 5 жыл бұрын
Sir you are great. My all doubt clear when I watch your lecture 😊
@rahulsaha7131
@rahulsaha7131 5 жыл бұрын
Sir, please make videos on Circular Queue and Double Ended Queue(Deque).
@lavanyac780
@lavanyac780 3 жыл бұрын
Thank you so much sir,your way of teaching is very good and clear
@siddarthaarruri8529
@siddarthaarruri8529 3 жыл бұрын
All clear sir... Thanks a lot 🙏
@BrainyBuffoon
@BrainyBuffoon Жыл бұрын
best ever explanation
@ashu_bangtanophile
@ashu_bangtanophile 5 ай бұрын
sir, can you please implement them in compiler? i am getting errors... It will help us to understand more.
@krishnenthuv5544
@krishnenthuv5544 4 жыл бұрын
Perfect class...Thank you sir..for spending Ur precious time...
@hadirezaie8473
@hadirezaie8473 5 жыл бұрын
Thanks, sir. your explanation was great.
@bhargavireddy5892
@bhargavireddy5892 3 жыл бұрын
Thank you sir.your explanation is easy to understand 👌
@jamesroy9027
@jamesroy9027 5 жыл бұрын
Thanks alot Sir please make video on Problem Solving for GATE.... Please cover tough question
@yamunareddy3654
@yamunareddy3654 3 жыл бұрын
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_chowdary7597
@jay_chowdary7597 3 жыл бұрын
Push and pop operation is present in stacks we call them as ENQUEUE AND DEQUEUE in queues
@arnabroy4870
@arnabroy4870 5 жыл бұрын
Please show the implementation in a compiler. Please Sir help!!!
@kingfisher3791
@kingfisher3791 4 жыл бұрын
Creating is just similar to normal linked list, there we used head and tail,,here we are using front and rear
@santhoshbaride5728
@santhoshbaride5728 3 жыл бұрын
Everything is good but If you show a sample program it's more clear for me
@arnabroy4870
@arnabroy4870 5 жыл бұрын
Please put stack using queue. And some more videos on Data structures. Please Sir.
@s.kavitha201
@s.kavitha201 5 жыл бұрын
Awesome sir😇
@vishnuvardhan2687
@vishnuvardhan2687 2 жыл бұрын
Superb sir
@sougotasaha525
@sougotasaha525 3 жыл бұрын
Very helpful
@Pranathib2345
@Pranathib2345 Ай бұрын
thank you sir
@mohammadsonu388
@mohammadsonu388 4 жыл бұрын
3:08 , real video starts here
@chaithanyapagadala3640
@chaithanyapagadala3640 3 жыл бұрын
Thank you so much sir your explanation is very helpful for me but your board is not clear sir
@diwakaranand3114
@diwakaranand3114 5 жыл бұрын
Sir please make circular queue implementation (push & Pop)
@sushanthreddy512
@sushanthreddy512 4 жыл бұрын
Sir give the full code in description please...
@shimulbhattacharjee9560
@shimulbhattacharjee9560 5 жыл бұрын
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.
@kaustubhpaturi4801
@kaustubhpaturi4801 4 жыл бұрын
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.
@deveshprakash9959
@deveshprakash9959 5 жыл бұрын
Please post circular queue also sir
@viswam446
@viswam446 2 жыл бұрын
👍👍👍
@Rajamani-px4ch
@Rajamani-px4ch 3 жыл бұрын
Sir can u say once implementation of queues using pointers..
@vivekvardhanreddy811
@vivekvardhanreddy811 4 жыл бұрын
Make a video on circular queue
@poojithanaramala
@poojithanaramala 3 жыл бұрын
Tqqqqqq uuuuuuuuu sirrrrrrrrrrrrrrrrrrrr
@shiva-bg6ve
@shiva-bg6ve 5 жыл бұрын
Sir u have used temp in displaying.but can't we display by writing only the condition in the while loop or for loop
@supratimnayek2776
@supratimnayek2776 5 жыл бұрын
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_Creator6322
@Sense_Creator6322 5 жыл бұрын
Tq u so much sir
@beahumanloveyouall5355
@beahumanloveyouall5355 5 жыл бұрын
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
@botlaramu7259
@botlaramu7259 3 жыл бұрын
If(Front==null)
@skwaseem1321
@skwaseem1321 3 жыл бұрын
sir is representation and implementation same?
@yamahaers813
@yamahaers813 2 жыл бұрын
Sir doubt only linked list total not understanding
@shimulbhattacharjee9560
@shimulbhattacharjee9560 5 жыл бұрын
I can't figure out how to solve this problem. Plz help.
@harshjain8764
@harshjain8764 5 жыл бұрын
sir please reply me how these front , rear , head ,tail containing NULL by default ,
@sundeepsaradhi
@sundeepsaradhi 5 жыл бұрын
HI we have to initialize all these with null.
@harshjain8764
@harshjain8764 5 жыл бұрын
@@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
@harshjain8764
@harshjain8764 5 жыл бұрын
@@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 ?
@dharma3404
@dharma3404 5 жыл бұрын
@@harshjain8764 any variable declared as global gets null by default
@thanmaibhaskar7749
@thanmaibhaskar7749 2 жыл бұрын
Peek is not explained😔😔😔
@vinothvk2711
@vinothvk2711 5 жыл бұрын
In que u r using *New (pointer) but in stack U r using New (no pointer)??? Whyy bro
@sundeepsaradhi
@sundeepsaradhi 5 жыл бұрын
Hi Sorry I didn't get your doubt Pls elobarate your doubt
@harshjain8764
@harshjain8764 5 жыл бұрын
bro he forgotted to add *new as a pointer in stack implementation using linked list , that new is pointer only .
@amruthdr8364
@amruthdr8364 5 жыл бұрын
@@sundeepsaradhi sir, actually it mean you didn't used the *new,*temp,*top; in stack but you used *new,*temp in queue......
@AjayKumar-ui7eh
@AjayKumar-ui7eh 5 жыл бұрын
Telugu lo cheppandi sir
STACK APPLICATION : INFIX TO POSTFIX CONVERSION ALGORITHM - DATA STRUCTURES
27:33
Sundeep Saradhi Kanthety
Рет қаралды 75 М.
QUEUE IMPLEMENTATION USING ARRAYS - DATA STRUCTURES
28:10
Sundeep Saradhi Kanthety
Рет қаралды 141 М.
Hoodie gets wicked makeover! 😲
00:47
Justin Flom
Рет қаралды 134 МЛН
Don't underestimate anyone
00:47
奇軒Tricking
Рет қаралды 16 МЛН
風船をキャッチしろ!🎈 Balloon catch Challenges
00:57
はじめしゃちょー(hajime)
Рет қаралды 93 МЛН
STACK IMPLEMENTATION USING ARRAYS - DATA STRUCTURES
26:23
Sundeep Saradhi Kanthety
Рет қаралды 164 М.
STACK IMPLEMENTATION USING LINKED LIST - DATA STRUCTURES
23:16
Sundeep Saradhi Kanthety
Рет қаралды 91 М.
LINKED LIST (CREATION AND DISPLAY) - DATA STRUCTURES
42:19
Sundeep Saradhi Kanthety
Рет қаралды 370 М.
4.3 Queue Implementation using Linked List in C | Data Structure Tutorials
19:47
Jenny's Lectures CS IT
Рет қаралды 504 М.
NUMBER OF NODES AND REVERSING OF LINKED LIST - DATA STRUCTURES
21:31
Sundeep Saradhi Kanthety
Рет қаралды 39 М.
3.3 Stack implementation using Linked List | Data Structures and Algorithm Tutorials
27:01
Linked List implementation of Queue Data Structure  - C++
8:21
Hoodie gets wicked makeover! 😲
00:47
Justin Flom
Рет қаралды 134 МЛН