QUEUE IMPLEMENTATION USING LINKED LIST - DATA STRUCTURES

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

Sundeep Saradhi Kanthety

Sundeep Saradhi Kanthety

Күн бұрын

Пікірлер: 49
@VijayPal-vx9es
@VijayPal-vx9es 4 жыл бұрын
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 2 жыл бұрын
Thank you so much sir,your way of teaching is very good and clear
@jamesroy9027
@jamesroy9027 5 жыл бұрын
Thanks alot Sir please make video on Problem Solving for GATE.... Please cover tough question
@siddarthaarruri8529
@siddarthaarruri8529 2 жыл бұрын
All clear sir... Thanks a lot 🙏
@hadirezaie8473
@hadirezaie8473 4 жыл бұрын
Thanks, sir. your explanation was great.
@BrainyBuffoon
@BrainyBuffoon Жыл бұрын
best ever explanation
@ashu_bangtanophile
@ashu_bangtanophile 3 ай бұрын
sir, can you please implement them in compiler? i am getting errors... It will help us to understand more.
@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
@bhargavireddy5892
@bhargavireddy5892 3 жыл бұрын
Thank you sir.your explanation is easy to understand 👌
@arnabroy4870
@arnabroy4870 5 жыл бұрын
Please show the implementation in a compiler. Please Sir help!!!
@s.kavitha201
@s.kavitha201 5 жыл бұрын
Awesome sir😇
@kingfisher3791
@kingfisher3791 4 жыл бұрын
Creating is just similar to normal linked list, there we used head and tail,,here we are using front and rear
@krishnenthuv5544
@krishnenthuv5544 3 жыл бұрын
Perfect class...Thank you sir..for spending Ur precious time...
@arnabroy4870
@arnabroy4870 5 жыл бұрын
Please put stack using queue. And some more videos on Data structures. Please Sir.
@vishnuvardhan2687
@vishnuvardhan2687 2 жыл бұрын
Superb sir
@sougotasaha525
@sougotasaha525 3 жыл бұрын
Very helpful
@mohammadsonu388
@mohammadsonu388 4 жыл бұрын
3:08 , real video starts here
@santhoshbaride5728
@santhoshbaride5728 3 жыл бұрын
Everything is good but If you show a sample program it's more clear for me
@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.
@viswam446
@viswam446 2 жыл бұрын
👍👍👍
@diwakaranand3114
@diwakaranand3114 5 жыл бұрын
Sir please make circular queue implementation (push & Pop)
@sushanthreddy512
@sushanthreddy512 4 жыл бұрын
Sir give the full code in description please...
@poojithanaramala
@poojithanaramala 3 жыл бұрын
Tqqqqqq uuuuuuuuu sirrrrrrrrrrrrrrrrrrrr
@yamahaers813
@yamahaers813 2 жыл бұрын
Sir doubt only linked list total not understanding
@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 2 жыл бұрын
If(Front==null)
@deveshprakash9959
@deveshprakash9959 5 жыл бұрын
Please post circular queue also sir
@Rajamani-px4ch
@Rajamani-px4ch 3 жыл бұрын
Sir can u say once implementation of queues using pointers..
@Sense_Creator6322
@Sense_Creator6322 4 жыл бұрын
Tq u so much sir
@skwaseem1321
@skwaseem1321 3 жыл бұрын
sir is representation and implementation same?
@vivekvardhanreddy811
@vivekvardhanreddy811 4 жыл бұрын
Make a video on circular queue
@chaithanyapagadala3640
@chaithanyapagadala3640 3 жыл бұрын
Thank you so much sir your explanation is very helpful for me but your board is not clear sir
@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
@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
@shimulbhattacharjee9560
@shimulbhattacharjee9560 5 жыл бұрын
I can't figure out how to solve this problem. Plz help.
@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 4 жыл бұрын
@@sundeepsaradhi sir, actually it mean you didn't used the *new,*temp,*top; in stack but you used *new,*temp in queue......
@thanmaibhaskar7749
@thanmaibhaskar7749 2 жыл бұрын
Peek is not explained😔😔😔
@AjayKumar-ui7eh
@AjayKumar-ui7eh 5 жыл бұрын
Telugu lo cheppandi sir
STACK APPLICATION : INFIX TO POSTFIX CONVERSION ALGORITHM - DATA STRUCTURES
27:33
Sundeep Saradhi Kanthety
Рет қаралды 74 М.
QUEUE IMPLEMENTATION USING ARRAYS - DATA STRUCTURES
28:10
Sundeep Saradhi Kanthety
Рет қаралды 140 М.
The CUTEST flower girl on YouTube (2019-2024)
00:10
Hungry FAM
Рет қаралды 49 МЛН
У ГОРДЕЯ ПОЖАР в ОФИСЕ!
01:01
Дима Гордей
Рет қаралды 8 МЛН
The Joker wanted to stand at the front, but unexpectedly was beaten up by Officer Rabbit
00:12
Men Vs Women Survive The Wilderness For $500,000
31:48
MrBeast
Рет қаралды 94 МЛН
LINKED LIST (CREATION AND DISPLAY) - DATA STRUCTURES
42:19
Sundeep Saradhi Kanthety
Рет қаралды 365 М.
Linked List implementation of Queue Data Structure  - C++
8:21
How I'd Learn Data Analytics in 2024 (If I Had to Start Over)
14:08
CareerFoundry
Рет қаралды 802 М.
3.3 Stack implementation using Linked List | Data Structures and Algorithm Tutorials
27:01
STACK IMPLEMENTATION USING ARRAYS - DATA STRUCTURES
26:23
Sundeep Saradhi Kanthety
Рет қаралды 163 М.
Queue Using Linked Lists
26:30
CodeWithHarry
Рет қаралды 147 М.
The CUTEST flower girl on YouTube (2019-2024)
00:10
Hungry FAM
Рет қаралды 49 МЛН