4.4 Circular Queue in Data Structure | Circular Queue using Arrays in C | DSA Tutorials

  Рет қаралды 705,272

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

In this lecture I have described circular queue implementation using arrays as well as analyzed the drawback of Linear Queue. I have written C program for implementation of queue using arrays.
DSA Full Course: https: • Data Structures and Al...
******************************************
See Complete Playlists:
C Programming Course: • Programming in C
C++ Programming: • C++ Complete Course
Python Full Course: • Python - Basic to Advance
Printing Pattern in C: • Printing Pattern Progr...
DAA Course: • Design and Analysis of...
Placement Series: • Placements Series
Dynamic Programming: • Dynamic Programming
Operating Systems: // • Operating Systems
DBMS: • DBMS (Database Managem...
**********************************************
Connect & Contact Me:
Facebook: / jennys-lectures-csit-n...
Quora: www.quora.com/...
Instagram: / jayantikhatrilamba
#jennyslectures
#datastructures
#circularqueue
#ugcnet
#course

Пікірлер: 487
@Sovit705
@Sovit705 3 жыл бұрын
I was searching here and there, and finally got a crystal clear concept of the circular queue. This also made me realize the mistakes I have done in learning the Linear queue.🙏🏽
@shadracknjuguna400
@shadracknjuguna400 Жыл бұрын
I have never understood an algorithm and simply liked it as this. You are the best I've seen👌. Congrats Prof Jenny on this work👏👏.
@shivanshvish4879
@shivanshvish4879 Жыл бұрын
We need more Guru's like you because in college all they teach is how to complete the whole syllabus in a very efficient way. You explain it clearly and practically. I understood the concept quickly that I didn't understand by our faculty prof. They just excel at taking salaries and teaching in traditional ways, which is invaluable for us. Hats off to ya!
@antgr9975
@antgr9975 4 жыл бұрын
Ma’am you are honestly the best teacher thank you so much I am going to pass my course because of you much appreciation!!!!
@utsavjain2219
@utsavjain2219 4 жыл бұрын
I would like to thank you for all the efforts you put into your videos just to make the life of us(students) better, i have been watching and following your videos for some time now and have seen that no one teaches the way you do and thank you for helping us and making our concepts just like yours i.e,clear as crystal !!!
@Ravinderi87
@Ravinderi87 4 жыл бұрын
Today I got it in 10 years 😁
@vinayak186f3
@vinayak186f3 3 жыл бұрын
Bhai partyyyyyyyyyyyyy🎉
@SHASHANKRUSTAGII
@SHASHANKRUSTAGII 3 жыл бұрын
@@vinayak186f3 he will give party after 10 more years
@dhruvsingh1837
@dhruvsingh1837 3 жыл бұрын
Brother/Sister do you have a job?
@parvadhami980
@parvadhami980 2 жыл бұрын
Poor you 😭
@kapilkandpal637
@kapilkandpal637 2 жыл бұрын
😂😂😂
@lifekool5838
@lifekool5838 2 жыл бұрын
BY watching this video, I remembered one of my favorite teacher who teaches dedicatedly like really an expert. You are a professional dedicated and expert in teaching crystal clear concepts. Thank you so much mam.😇
@sudharsands5773
@sudharsands5773 2 жыл бұрын
A request to all viewers... Please share this channel 🥺.. Her teaching skills deserves more views
@littleorange7142
@littleorange7142 Жыл бұрын
You are the reason that i passed the exam. Thanks a lot, ma'am. 🙏🙏
@retrohead5313
@retrohead5313 7 ай бұрын
I can't say thank you enough, this is the night before my exam and your video just helped me A LOT! I hope you doing well.
@phineasferb9537
@phineasferb9537 3 жыл бұрын
include #include #include #define size 5 int cq[size]; int front=0,rear=0; void display() { int i; printf(" The circular queue is : "); if(front
@tarunsahebzaad4704
@tarunsahebzaad4704 2 жыл бұрын
Broooooooooooo wtf
@b.srinivasarao2904
@b.srinivasarao2904 2 жыл бұрын
👍
@iimoon777
@iimoon777 Жыл бұрын
@@shantanusingh280 It seems like he made quite some errors in enqueue function. Have a go with this one, this code is working. #include #include #include #define N 5 int f=-1,r=-1; void insert(int[],int); void disp(int[]); void del(int[]); void main() { int q[N],ch,item; do { printf(" 1.Insert 2.Display 3.Delete 4.Exit Enter your choice:"); scanf("%d",&ch); switch(ch) { case 1: printf(" Enter element to store on circular queue:"); scanf("%d",&item); insert(q,item); break; case 2: disp(q); break; case 3: del(q); break; case 4: exit(0); default: printf(" Invalid choice:"); } }while(ch!=4); getch(); } void insert(int q[N],int item) { if((r+1)%N==f) //full condition printf(" Overflow"); else if (f==-1 && r==-1) //for inserting first data into queue { f=0; r=0; q[r]=item; } else //if some data are already stored { r=(r+1)%N; q[r]=item; } } void del(int q[N]) //deletion { if(f==-1) printf(" Underflow"); else if(f==r) //for deleting last element in queue { printf(" deleted item: %d",q[f]); f=-1; r=-1; } else //for deleting element which is not last lol { printf(" Deleted item:%d",q[f]); f=(f+1)%N; } } void disp(int q[N]) { int i=f; if(f==-1) //empty printf(" Underflow"); else { while(i!=r) { printf(" %d",q[i]); i=(i+1)%N; } printf(" %d",q[r]); //for displaying last value } }
@RahulGPT-A
@RahulGPT-A Жыл бұрын
​@@iimoon777wrong, not working with your full condition in insertion
@iimoon777
@iimoon777 Жыл бұрын
@@RahulGPT-A #include #include #include #define N 5 int f=-1,r=-1; void insert(int q[N],int item) { if((r+1)%N==f || r==N-1 && f==0) //full condition printf(" Overflow"); else if (f==-1 && r==-1) //for inserting first data into queue { f=0; r=0; q[r]=item; } else //if some data are already stored { r=(r+1)%N; q[r]=item; } } void del(int q[N]) //deletion { if(f==-1) printf(" Underflow"); else if(f==r || f==-1) //for deleting last element in queue { printf(" deleted item: %d",q[f]); f=-1; r=-1; } else //for deleting element which is not last lol { printf(" Deleted item:%d",q[f]); f=(f+1)%N; } } void disp(int q[N]) { int i=f; if(f==-1) //empty printf(" Underflow"); else { while(i!=r && r!=-1) { printf(" %d",q[i]); i=(i+1)%N; } if(r!=-1) printf(" %d",q[r]); //for displaying last value } } void main() { int q[N],ch,item; do { printf(" 1.Insert 2.Display 3.Delete 4.Exit Enter your choice:"); scanf("%d",&ch); switch(ch) { case 1: printf(" Enter element to store on circular queue:"); scanf("%d",&item); insert(q,item); break; case 2: disp(q); break; case 3: del(q); break; case 4: exit(0); default: printf(" Invalid choice:"); } }while(ch!=4); getch(); } some weird it worked in a different application, how about now?
@muditmathur2078
@muditmathur2078 5 жыл бұрын
Ma'am your videos really help me in the exam time As the result of it I have score 70% in my diploma exams held by bter Jodhpur really for are god to me. Thanks a lot ma'am
@prithivirajv2810
@prithivirajv2810 3 жыл бұрын
U R the best teacher to teach this hard concepts easily . I have never seen this like lecture 😍🥰👌👌
@vizaykumarvadde1362
@vizaykumarvadde1362 5 жыл бұрын
I never interested to learn DS. I am Java professional. But by seeing your insertion sort video first time by mistake immediately I subscribed your channel.. love your way of explanation.. are you a trainer or IT professional? Can I know please..
@ketangaikwad8617
@ketangaikwad8617 2 жыл бұрын
You are just superb ma'am!!! I've been watching this DSA playlist and I've become a fan of yours. Thank you so much ma'am for teaching me this valuable knowledge.
@MuhammadKashif-ie7ez
@MuhammadKashif-ie7ez 3 жыл бұрын
Charismatic Personality. Clear Concepts. Respect one word for U Ma'am
@juhiajwani4170
@juhiajwani4170 4 жыл бұрын
Ma'am u are a wonderful teacher. I like how u explain concepts with all the possibilities of occurrences. Kuddos to ur dedication. Thankyou so much for these videos ma'am.
@ItsMe-rf7mo
@ItsMe-rf7mo 3 жыл бұрын
Modulo 3%5 = 0.6(ans) Then take first digit of ans,and multiply with 5 0*5 = 0(ans2) And subtract 3 with (ans2) 3-0 = 3 I hope everyone understand how to mod
@sambedansahooridul1237
@sambedansahooridul1237 2 жыл бұрын
Is it the process?
@pravargupta6285
@pravargupta6285 2 жыл бұрын
@@sambedansahooridul1237 no bro. All u need to understand is when you use % operator then the quotient cannot be a decimal number and the remainder is the the answer. For eg 2 % 5 = remainder obtained after dividing 2 by 5. So quotient is 0 and remainder is 2
@mmanikandan7125
@mmanikandan7125 Жыл бұрын
i have a doubt if we enqueue more than 5 time then the rear goes to the zeroth position then and over write stack[0]
@aryanmaniyar3475
@aryanmaniyar3475 10 ай бұрын
What a great video indeed mam! Thank you so so so much mam :) Anyone who is looking for there concepts to get cleared, this video is the way to go!
@ketangaikwad8617
@ketangaikwad8617 2 жыл бұрын
I think I am watching this playlist for a month and I just want to comment on each video of yours that how a good teacher you are!! Thank u so much ma'am!!
@emma-ub1uq
@emma-ub1uq Жыл бұрын
FINALLY I understood this after browsing over the internet and going through all my notes trying to figure out wth is this. thank you
@My_Life_My_Rules28
@My_Life_My_Rules28 Жыл бұрын
Ma'am you are literally अवतार of सरस्वती. Thank You so much for making me understand this crystal clear ❤️
@mahinulislam2463
@mahinulislam2463 Ай бұрын
Thank you Jenny! This video is so helpful and your explanations are detailed,, clear and concise. I love how you traced out each and every instance of the values as they went through the array. Keep up the great work!
@prathmeshpawar5579
@prathmeshpawar5579 2 жыл бұрын
Mrs. Jenny , You #deserve the "The Best Professor Award".
@narayananishanth7357
@narayananishanth7357 5 ай бұрын
words are not enough to explain her expertise in this subject🙏
@biswamohandwari6460
@biswamohandwari6460 4 жыл бұрын
Really your concepts are really clear. It's very easy to understand from your video
@LoveIsLifeTurkishIndia
@LoveIsLifeTurkishIndia 3 жыл бұрын
Rear=rear+1%N is same as rear++%N. Display function in for loop will be For(i=front;i
@marveljunior4922
@marveljunior4922 3 жыл бұрын
Bro this solves display() function error....thanks a lot✌️
@RahulGupta-go8oe
@RahulGupta-go8oe 4 жыл бұрын
that smile at 15:55, when u successfully explain something amazing.
@RadhaKrishna-ns2dl
@RadhaKrishna-ns2dl 4 жыл бұрын
Antha particularga ela chusaav bro nvu
@rithishchowdary1415
@rithishchowdary1415 25 күн бұрын
My DSA GOD's🙏Jenny's Mam💖 & Neso Academy💓
@sahil_0
@sahil_0 4 жыл бұрын
Your method of teaching is best.
@devanshprataptiwari5804
@devanshprataptiwari5804 3 жыл бұрын
One of the easiest way to solve complex programs.....Best part is focusing mainly on logic of functions and calling them one-by-one to show their functionality.
@manu-miku
@manu-miku 4 жыл бұрын
Well done Jenny. You make me proud. You were always one of my favourite student in college
@gsainitish1012
@gsainitish1012 4 жыл бұрын
Fantastic explanation 😍,even my professor will not explain in this manner.Thank u💞❣️
@shubhmsinghrajput5250
@shubhmsinghrajput5250 4 жыл бұрын
mam you are gifted from data structure god how can you make these confusion thing are very simple you teach the circular queues amazing you are the super teacher in the world of data structure
@TECH-ch5dm
@TECH-ch5dm 3 ай бұрын
you are a genius in teaching
@AyyanPatel69
@AyyanPatel69 8 ай бұрын
I learned So much Part Of DSU from you Thanks Mam❤ Afterall You are Sooooo Beautiful😍
@sojwalgosavi4406
@sojwalgosavi4406 2 жыл бұрын
Amazing video mam, nice explanation.... but one modification or correction for Display // Use do while int i = f; do{ System.out.print(a[i]+" "); i = (i+1)%n; }while(i != f); System.out.println();
@aviralsaxena9773
@aviralsaxena9773 2 жыл бұрын
thanks
@aftan494
@aftan494 4 жыл бұрын
Got it at once..... really great !!!!
@garou0827
@garou0827 4 жыл бұрын
Thanks a lot ma'am you served as a last minute blessing for my board exams
@1004darlings
@1004darlings 3 жыл бұрын
Mam, i just wanna say that i love you. You always save my life. I don't fckin know what my lecture gave to me when class but you explain it really well. Thankyou very much! I won't ever skip ur ads!
@pravinbudage1830
@pravinbudage1830 2 жыл бұрын
You are simply superb. Awesome way of teaching the DS.
@marksachinms1246
@marksachinms1246 3 жыл бұрын
such a great explanation. code works perfectly. totally satisfied . thank you mam.
@chakravarthybatna1589
@chakravarthybatna1589 Жыл бұрын
this is c language program and it's worked for me #include #define n 5 void enqueue(int); void dequeue(); void peek(); void display(); int queue[n]; int front=-1; int rear=-1; int ch,num; void main() { do { printf(" 1.enqueue 2.dequeue 3.display 4.peek enter choice: "); scanf("%d",&ch); switch (ch) { case 1: printf(" enter a number:"); scanf("%d",&num); enqueue(num); break; case 2: dequeue(); break; case 3: display(); break; case 4: peek(); break; default: printf(" invalid option"); } } while(ch); } void enqueue(int num) { if((rear+1)%n==front) { printf(" overflow"); } else if (front==-1){ front=rear=0; queue[rear]=num; } else{ rear=(rear+1)%n; queue[rear]=num; } } void dequeue() { if(front==-1){ printf(" underflow"); } else if(front==rear){ printf(" dequeued element is %d and now queue is empty",queue[front]); } else{ printf(" dequeued element is %d",queue[front]); front=(front+1)%n; } } void peek(){ if(front==-1){ printf(" queue is empty");} else { printf(" top most element is %d",queue[front]); } } void display() { if(front==-1){ printf(" queue is empty");} else{ for(int i=front;i!=rear;i=(i+1)%n){ printf("\t%d",queue[i]); } printf("\t%d",queue[rear]); } }
@venkateshpolisetty5624
@venkateshpolisetty5624 4 жыл бұрын
The front will be at the first location only. It won't point to other locations. The other values will be shifted when dequeued operation is performed.
@abhinavsingh-zc2hk
@abhinavsingh-zc2hk 4 жыл бұрын
Mam You are the best teacher in the world.Thank You so much.
@pnkdtu27
@pnkdtu27 5 ай бұрын
Very HELPFUL, FINALLY UNDERSTOOD AFTER WATCHING THIS LECTURE 🎉
@VIVardhan5130
@VIVardhan5130 2 жыл бұрын
Thank you mam so much for explaining it in such a easy way... You are always helping me whenever I face difficulty in solving certain programs...☺️☺️
@dtec5993
@dtec5993 2 жыл бұрын
I just love the pronunciation of EMPTY. And the video is great
@hetshah250
@hetshah250 4 жыл бұрын
Ma'am can you please make a video on what exactly is time complexity? And what's time complexity of different different algorithms.
@jayap8355
@jayap8355 3 жыл бұрын
+1
@VinodKashyap-jb4ny
@VinodKashyap-jb4ny 3 жыл бұрын
O(1)
@neelparekh1759
@neelparekh1759 Жыл бұрын
O(n)
@suryakumar9190
@suryakumar9190 4 жыл бұрын
Ma'am a huge thanks. It helps me a lot and lot. One Kind request. I only understood Longest Increasing Subsequence (LIS) by seeing your video only. Can you please do the same for Longest Palindromic Subsequence/ Substring?
@surajitchowdhury4697
@surajitchowdhury4697 4 жыл бұрын
Thank u so much maam for clearing the concepts in such a beautiful manner..💙..plzz post a video on dequeue also....plzz maam🙏🙏
@Dhanashri-iv8td
@Dhanashri-iv8td 4 ай бұрын
Mam you teaching is so nice now I understand the concept practically so easily
@MaqsoodAhmad-ey8th
@MaqsoodAhmad-ey8th 2 жыл бұрын
I learn lots of things today. Thanks 👍 ma'm.
@Alaina_Of_Jesus
@Alaina_Of_Jesus 2 жыл бұрын
I passed ds because of u mam
@BinaryBazaar501
@BinaryBazaar501 4 жыл бұрын
super method of teaching mn to soch raha hun pehly q ni mila ap ka Chanel ♥️♥️♥️♥️♥️♥️♥️♥️♥️♥️♥️♥️♥️
@sameerajenjeti7806
@sameerajenjeti7806 2 жыл бұрын
mam your classes are very helpfull and thankyou heartfully ,you are amazing with lectures.
@KanhaiyaKumarbcs
@KanhaiyaKumarbcs 4 жыл бұрын
your efforts for teaching us is priceless mam.
@sangavikarthi5971
@sangavikarthi5971 2 жыл бұрын
I was wondering how you teach things so welll....god bless u mam
@hbpatel1976
@hbpatel1976 4 жыл бұрын
How about making a video on Priority Queue (with array & linked list implementation)?
@omkarnagarkar6660
@omkarnagarkar6660 4 жыл бұрын
People like you are the hope for good education in india
@MaqsoodAhmad-ey8th
@MaqsoodAhmad-ey8th 2 жыл бұрын
Your hard work different from other. Mam your teaching and explanation techniques are V.G
@Shubh_Vaghela
@Shubh_Vaghela 4 жыл бұрын
Nice video mam. We can use ( i != Rear+1) instead of writing printf outside the while loop.
@LoveandHumble
@LoveandHumble 2 жыл бұрын
Thanks for your comment ☺️ finally solved my error
@shashhid___98gg
@shashhid___98gg 2 жыл бұрын
bro it will not run the loop only for the first iteration.
@RexEagle_
@RexEagle_ 4 жыл бұрын
ma'am please cover operation on queue, deques and priority queue please ma'am!
@timl_malenadu3554
@timl_malenadu3554 4 жыл бұрын
every one is telling ma'am your video is good very helpful for us then please give me one like to this video . just telling in words is not good also who helped you .you people also help them .it gives motivation to teachers .
@LoveIsLifeTurkishIndia
@LoveIsLifeTurkishIndia 3 жыл бұрын
Very easy way of writing code and easy explanation. Thanks mam for making this video in 2019 due to which I can refer this if I dont understand in online college .
@biplabgiri6980
@biplabgiri6980 4 жыл бұрын
It was the only topic that felt difficult to me but right now I really want to thank you mam for the explanation..... Doubts are clear now!!!!
@BhuveshDhiman
@BhuveshDhiman 4 жыл бұрын
Keep making Videos because you are the best teacher.
@JennyslecturesCSIT
@JennyslecturesCSIT 4 жыл бұрын
I appreciate the fact that you guys gave me this recognition. Thanks.
@ApurvaKoli-ik2he
@ApurvaKoli-ik2he 7 ай бұрын
You have superb teaching skills...
@arpityadav2268
@arpityadav2268 4 жыл бұрын
Thank You, Maa'm. Your beautiful explanation helps me a lot. 🥰
@027chinmaykarodpati7
@027chinmaykarodpati7 2 жыл бұрын
You're brilliant mam you're teaching style is very fantastic
@dank5088
@dank5088 Жыл бұрын
Time of programming other things : Harry bahi 😍 When last day exam preparation : Jenny 😎
@techspot8722
@techspot8722 3 жыл бұрын
Mam, you are really helpful ♥️
@adityakayal1
@adityakayal1 4 жыл бұрын
Maaam You just saved me from failing Today is my exam, I didn't study the whole year, but watched all your videos whole night. Now my data structure is ready.😄😄 Why didn't you learn all the subjects maam?🙃 It would have been of great help.🤭 Btw Thanks maaam. Love you Maam♥️ Yours most obediently, A student of Sem3
@vedioedittor
@vedioedittor 4 жыл бұрын
same me
@kickbuttowsk2i
@kickbuttowsk2i 4 жыл бұрын
cringe fest
@Sachchal
@Sachchal 4 жыл бұрын
Ma'am you are an excellent teacher!! Thank you soo much!!
@dishantitaliya1912
@dishantitaliya1912 Жыл бұрын
Thank you so much ma'am. It's really helpful. Your all playlist helps the most for every students.thanks a lot god bless you.
@SherlockHolmes-lc7jo
@SherlockHolmes-lc7jo 3 жыл бұрын
Ma'am you are an amazing teacher, keep up this great work ,may god bless you!!!
@shinebaka5696
@shinebaka5696 3 жыл бұрын
Wow you explained in such an amazing way.
@kushkumar9936
@kushkumar9936 3 жыл бұрын
ma'am ur videos are really very help full for me.I watched many videos but ur explainations are best i must say i got something really very helpul video
@synster693
@synster693 9 ай бұрын
no one does this better than her for sure
@__SHRAVANIPACHUNURI
@__SHRAVANIPACHUNURI 2 жыл бұрын
Thank you very much mam. Really u r helping many students to learn ds in an understanding way
@meghanalakkampelly7465
@meghanalakkampelly7465 4 ай бұрын
The way u say empty is🤣🤣🤣
@vakhariyajay2224
@vakhariyajay2224 2 жыл бұрын
Thank you very much. You are a genius.
@himanshukaushal3467
@himanshukaushal3467 4 жыл бұрын
Thank you so much ma'am... Your way of teaching is too good... Thanks alot ma'am...
@princetiwari26
@princetiwari26 Жыл бұрын
Kasam se mam herry ki circular queue ki video 3 baar dekhne par bhi samjh nahi aaya uske baad apke yaha aaaya to ekdum clear ho gaya yarrr ❤❤
@vineetachaudhary6421
@vineetachaudhary6421 3 жыл бұрын
Great lecture mam.
@sakshamsharma648
@sakshamsharma648 2 жыл бұрын
BEAUTIFULLY EXPLAINED
@vatsalpagare6935
@vatsalpagare6935 4 жыл бұрын
Again present mam..🙋🏻‍♂️😅
@mrahulbhat828
@mrahulbhat828 Жыл бұрын
Love your teaching andyour efforts. Thank you ma'am
@ambikasadh6569
@ambikasadh6569 4 жыл бұрын
Mam can u please explain the sorting in circular queue.
@riyankakarmakar2591
@riyankakarmakar2591 3 жыл бұрын
Ma'am during display you are separately printing queue[rear] as the condition is not true. If we use do-while loop instead of while loop then the condition will execute once even if (i!=rear) then queue[rear] will also be printed and then it will come out of the loop. Can't we use do-while here?
@mauryaashish1865
@mauryaashish1865 3 жыл бұрын
I am getting interest in DS NOWww!😂😂
@harshithrn3274
@harshithrn3274 2 жыл бұрын
Mam your explanation is superb... I really learn everything quite fast but I have to search for algorithms elsewhere everytime... So if possible plz make videos for Algorithm too.... And Thanku very much for your teaching☺️☺️🙏
@VK_BRANDING
@VK_BRANDING 7 ай бұрын
u will be unstoppable!!!!!!!
@Sangamkumar017
@Sangamkumar017 2 жыл бұрын
way of explanation was awesome ma'am
@gangadhar5571
@gangadhar5571 Ай бұрын
excellent presentation..good ..
@alberteinstein2468
@alberteinstein2468 4 жыл бұрын
Hi...I wanna say that there is an error in the code.. 1. Insert the elements in the queue using the enqueue function() and make it full 2. Now, start deleting all the elements using the dequeue function() and check for the peek function() and display function() parallelly 3. There, at the end, even after we have deleted the last element still the peek function() and the display function() will point to that last element. I know its a circular queue and it will always points somewhere in the queue. But even after we have dequeue all the elements ,the dequeue, the peek and the display function are struck to that last elements. Hope I am able to express myself. I love the way you teach and this is the only reason why i am able to get deeper into these topics KSB S BISHT
@ayushkumarmishra1445
@ayushkumarmishra1445 4 жыл бұрын
exactly , when traversing the last after performing deq, it still shows the whole original array
@rupeshsingh943
@rupeshsingh943 Жыл бұрын
You are really a great teacher ma'am 🙂
@usairashahbaz7889
@usairashahbaz7889 9 ай бұрын
Very Great All things cover Teaching method very nice
@joseph2073
@joseph2073 3 жыл бұрын
Thanku so so much mam ... 🙏🙏🙏 For explaining so simply and beautifully.. 💥💥
@Lashistoriasdelilith
@Lashistoriasdelilith 2 жыл бұрын
Perfectly explained!! so helpful!! I'd like to know what's the statement that deletes the element. Thanks
4.1 Queue in Data Structure | Introduction to Queue | Data Structures Tutorials
20:19
Harley Quinn's revenge plan!!!#Harley Quinn #joker
00:59
Harley Quinn with the Joker
Рет қаралды 22 МЛН
Gli occhiali da sole non mi hanno coperto! 😎
00:13
Senza Limiti
Рет қаралды 16 МЛН
How He Got $600,000 Data Engineer Job
19:08
Sundas Khalid
Рет қаралды 22 М.
4.2 Implementation of Queue using Arrays | Data Structures & Algorithm Tutorials
23:06
Introduction to Circular Queue in Data Structures
24:25
CodeWithHarry
Рет қаралды 298 М.
Circular Queue Implementation - Array
9:50
Blue Tree Code
Рет қаралды 84 М.
4.3 Queue Implementation using Linked List in C | Data Structure Tutorials
19:47
Jenny's Lectures CS IT
Рет қаралды 462 М.
4 Steps to Solve Any Dynamic Programming (DP) Problem
0:57
Greg Hogg
Рет қаралды 335 М.
Introduction to Circular Queues
10:43
Lalitha Natraj
Рет қаралды 83 М.
Harley Quinn's revenge plan!!!#Harley Quinn #joker
00:59
Harley Quinn with the Joker
Рет қаралды 22 МЛН