Тёмный

Queue and FIFO/FCFS explained in 10 minutes + a bonus task 📣📣 (Data Structures course) 

CodeBeauty
Подписаться 277 тыс.
Просмотров 58 тыс.
50% 1

📚 Learn how to solve problems and build projects with these Free E-Books ⬇️
C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book
Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook
🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/
Experience the power of practical learning, gain career-ready skills, and start building real applications!
This is a step-by-step course designed to take you from beginner to expert in no time!
💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10).
Use it quickly, because it will be available for a limited time.
Download Visual Assist here: bit.ly/WT-CB
I use it to enhance the performance, features, and support for C, C#, and C++ development in Visual Studio.
Download Ultra Edit here: bit.ly/UE-CB
It is a powerful, secure text editor designed specifically for programmers.
A queue is a FIFO Data structure (First in-First out). It is also known as FCFS (First come-First served)
A real-life example of a queue is a queue in a bank - the person who is at the front of the queue will be served first, and the new people who come into the bank will stand at the end of the queue and they will be served last. this means that we add new elements at the end of the queue and we remove them from the front.
We use queues in programming whenever we need things to happen in the exact order they were called, but the computer cannot keep up with the speed and execute those things fast enough.
In this situation, we put those things in a queue and we process/remove them from the front and add new things at the end of the queue.
The most common example of how queues are used in programming is the way a printer works - you can send multiple pages to print, but because printer takes a few seconds to print each page, all pages will be in a queue waiting for their turn to be printed, and they will be printed in the exact order they were sent to print.
I'm also going to share some examples of how I use queues in my programming work, and I'll explain the code of STL Queue and teach you about the most important functions used with queues:
push - add an element at the end
pop - remove an element from the front
size - tells you the size of the queue
front - first element of the queue
back - the last element of the queue
empty - tells you if the queue is empty
🎁 Create Modern Apps, 5x faster, with less code, Download FREE C++Builder Trial: bit.ly/CppBuilderFree
☕ If you've found my content helpful and would like to support me, you now have the option to buy me a coffee or a cookie! It's a small gesture of gratitude that means a lot to me and helps me keep creating free educational videos for you. Use the link to make a contribution: bit.ly/CodeBeauty_BuyMeACoffee
However, please don't feel obligated to do so. I appreciate every one of you, and I will continue to share valuable content with you regardless of whether you choose to support me in this way. Thank you for being part of the Code Beauty community! ❤️😇
Contents:
00:00 - What will you learn in this video
02:02 - What is a Queue, What is FIFO/FCFS
02:50 - When to use a queue in programming
05:40 - C++ code for STL Queue explained
08:39 - Solve this programming task and get a shoutout in my next video 📣
Stack Data Structure - bit.ly/StackDataStructure
Tag me on you Instagram stories:
Instagram 📸 - / truecodebeauty
Twitter 🐦- / truecodebeauty

Наука

Опубликовано:

 

2 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 199   
@CodeBeauty
@CodeBeauty 3 года назад
📚 Learn how to solve problems and build projects with these Free E-Books ⬇️ C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook 🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/ Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time! 💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10). Use it quickly, because it will be available for a limited time. #include #include using namespace std; void printQueue(queue queue) { while (!queue.empty()) { cout
@hbm293
@hbm293 3 года назад
An advice (that was already mentioned in a previous video): if you use the pause command, do the redirection to NUL, and not to "0". Indeed, the system() function runs the command string passed in argument, to the default command processor of the "current" operating system (e.g. Windows, etc). On Windows this is CMD.EXE. If you redirect to "0", you redirect the STDIN to a file called "0" and thus this will create a dummy "0" file and thus polluting the filesystem. Instead, it is better to use the "NUL" pseudo-file, which acts like the /dev/null of unix.
@relaxingnatureview79
@relaxingnatureview79 Год назад
#include #include using namespace std; void printQ(queuemyschedule){ while(!myschedule.empty()){ cout
@aliustun4258
@aliustun4258 3 года назад
I've been a c++ programmer for 20 years Your teaching style is great, I recommend it to beginners.
@CodeBeauty
@CodeBeauty 3 года назад
Thank you so much, I appreciate it! 🙏💙
@wertkus
@wertkus Год назад
Al beni yanina yetistir hocam
@ugurerkanbol7412
@ugurerkanbol7412 7 месяцев назад
kral guzel bir unide pc okuyorum bu yorumu gorursen bana bir iletişim bilgisi yollar misin
@TheConstantijn85
@TheConstantijn85 3 года назад
Many programmers upload good tutorials, but asume that some points are just self-explanatory. You produce excellent videos, but most importantly, you are an outstanding teacher. Thank you.
@CodeBeauty
@CodeBeauty 3 года назад
🤗🤗🥰
@volleyballcenter3956
@volleyballcenter3956 3 года назад
Saldina we need more your wonderful data structure videos .
@CodeBeauty
@CodeBeauty 3 года назад
New videos every Wednesday ☺️☺️🥳❤️
@volleyballcenter3956
@volleyballcenter3956 3 года назад
@@CodeBeauty I cant wait to listen binary trees from you.next wednesday if video will be about data structure that would be really nice. Greetings from Turkey
@Codebreaker0702
@Codebreaker0702 3 года назад
@@CodeBeauty Let's upload atleast 2 videos a week.........please🥺🥺🥺
@mjshastry7531
@mjshastry7531 Год назад
Hey Saldina! How are you? Just here to tell you that your videos taught me more than what I learned in the entire semester of Data Structures and Algorithms course at my university. I can now see that what I lacked was application-oriented thinking. I was just blindly strolling through these ideas and never got the point of "why the heck" would anybody (or I) get to use them... As always as I would like to be proven wrong, you (your explanations) have been what I needed! Just a nudge in the direction of what and why we use what programmers came up with. I cannot express how immensely gratified I am that finally someone has shown what I longed to get my hands on for quite a while. Thank you is all I can say for now, and if we ever happen to cross paths, I'll make sure to buy you a coffee 😄. Your admirer,
@iampranshu
@iampranshu 2 года назад
Simplicity is also a hard skill to excel! Amazing content Saldina! Hats off to you!
@thetruth2488
@thetruth2488 3 года назад
Studiram tehnicku informatiku u austriji. Uz tvoju pomoc sam prosao ispite na fakultetu. Jako sam ti zahvalan! Pozdrav is Austrije od Banjalucanina :D
@tierasmith4860
@tierasmith4860 Год назад
i’ve been reviewing/preparing for data structures with your videos and they’re amazing ! after watching them it clicks ! also like how you tell us why we would use them thank you!
@shoshanamofaz3012
@shoshanamofaz3012 2 года назад
Your English is better than mine. Thank you for the C++ tutorials.
@Hamza-dw4iw
@Hamza-dw4iw Год назад
your lectures are great! Learned pf, oop, and dsa in c++ from you
@leonardoguzman7854
@leonardoguzman7854 2 года назад
You are the best! Thanks for your videos!!
@eyob6288
@eyob6288 2 года назад
Best teacher ever Keep it up👍🏾👍🏾👌🏾👌🏾👌🏾
@abdulazizabubakar6539
@abdulazizabubakar6539 Год назад
Saldina you are the best. Thanks for your helping tutorial videos.
@yegho5933
@yegho5933 2 года назад
amazing explaining and beginner friendly, and english accent is understandable keep your videos they are pretty helpful !
@priscilapadilla357
@priscilapadilla357 2 года назад
God bless your soul!!! U r so good at explaining stuff u r the best :,)
@georgebentley-ricardo9445
@georgebentley-ricardo9445 2 года назад
Super interesting and another informative, instructive video. Thanks for sharing 👩‍🎓👩‍💻
@JarekAtWork
@JarekAtWork Год назад
First of all, thank you for that challenge. It helped me a lot with gaining practice and knowledge. In my opinion, challenges like this should be included at the end of each of your videos. This is my code: # include # include using namespace std; void newTask(queue &someQueue, string myTask = "My new task") { someQueue.push(myTask); } void endTask(queue &someQueue) { if (someQueue.empty()) { cout
@ZeroCool2211
@ZeroCool2211 3 года назад
I love it!! Thank you Saldena 🙏🏼🌷
@CodeBeauty
@CodeBeauty 3 года назад
Glad you like it! 💙 (btw, it's Saldina 🙈🙊)
@abugslife2461
@abugslife2461 Год назад
very easy to understand, thank you !
@anwar6971
@anwar6971 3 года назад
Thanks for a good lesson
@edvil1986
@edvil1986 3 года назад
I like so much your videos. You are a very good teacher. Congrats
@CodeBeauty
@CodeBeauty 3 года назад
Thank you! 😃 Happy to hear that! 🧡
@muhammadumair6554
@muhammadumair6554 3 года назад
I found your RU-vid videos pretty helpful and prolific. Especially the ones about C++, I request you to post content regarding Assembly Language (preferably x84), it will be a huge favor.
@user-ux3mg1wi9b
@user-ux3mg1wi9b Год назад
Lovely sister, clear explanation.
@wrkrebel
@wrkrebel Год назад
aewsome explanation. thanks for teaching 🥰🥰
@Everything92719
@Everything92719 3 года назад
Thanks for helping me, you are strengthening by c++ knowledge...
@CodeBeauty
@CodeBeauty 3 года назад
🥰🥰
@moisesnapoles2153
@moisesnapoles2153 3 года назад
Omg you are better than my teachers, I am still not in a programming class so I am referring to my normal clases. Teachers don’t explain well at all, they just give us a bunch of concepts which I will obviously forget. I wish my teachers were like you explaining with good and clear examples.
@CodeBeauty
@CodeBeauty 3 года назад
🥰🥰🥰
@rally2433
@rally2433 2 года назад
Hey Saldina, love your videos! Could you please cover trees, graphs, etc. as well? Thanks in advance!
@jhordyperez1594
@jhordyperez1594 3 года назад
Congratulations for the video, it's fantastic to start in c ++, on the other hand, there are many people from Latin America who follow you and it would help us a lot if you activated the subtitles. Greetings from Peru.
@CodeBeauty
@CodeBeauty 3 года назад
🇵🇪 Peru ❤️❤️
@ismailfaridi
@ismailfaridi Месяц назад
Good explanation ❤
@tanajikamble13
@tanajikamble13 3 года назад
Hi Saldina, hats off to you, I can imagine how much effort you have taken to create such quality content, teaching with live coding, really commendable effort, very soon your channel will be among the highest subscribed channel in coding gener. I would like to see one session on use of all the oops concepts in live capstone project. Wish you all the best !!
@tanajikamble13
@tanajikamble13 3 года назад
Being indian, it feels like actress Disha Patani is teaching me C++
@CodeBeauty
@CodeBeauty 3 года назад
Thanks a ton, my pleasure 🤗🤗
@omkarbadhe421
@omkarbadhe421 3 года назад
Teach the c++ template or STL library yr video so helpful
@aliafzal3029
@aliafzal3029 3 года назад
Hey saldina ....💜 I,m learning from your tutorials and it just great❤️ Thanku for being here.
@CodeBeauty
@CodeBeauty 3 года назад
I'm so glad and you're welcome! 💜💜
@kimasichristopher5277
@kimasichristopher5277 2 года назад
I like it and please keep it up.
@rayankhan6815
@rayankhan6815 7 месяцев назад
maam you are awasome thank you soo much
@onkelwaldgeist
@onkelwaldgeist 3 года назад
Hi Saldina, It gives me great pleasure to watch your videos. I have only started with C++. As a hobby programmer I started with Visual Basic. In the meantime I prefer to use C#. I have a general question about C++. I read a lot about RUST replacing C++. What is your opinion
@nompumelelonpk
@nompumelelonpk Месяц назад
Thank you 👏🏾
@felipevalles3831
@felipevalles3831 3 года назад
Cuando tengas tu Patreon yo voy a ser de los primeros en subscribirse, excelente maestra Saldina :)
@CodeBeauty
@CodeBeauty 3 года назад
❤️❤️❤️
@NaveenJC
@NaveenJC 3 года назад
Hi Saldina, could u make a in depth video for queue just like how u did for stacks?
@jhordyperez1594
@jhordyperez1594 3 года назад
Hello friend, I loved your video, I would like to ask you to please leave the option to enable subtitles in Spanish, we follow you from Latin American countries with levels of English in the process of improvement and it would be very helpful in order to understand more easily your excellent contents .
@shahabkhan1765
@shahabkhan1765 Год назад
nice explanation
@viniciusteixeira9803
@viniciusteixeira9803 3 года назад
Thanks, Saldina!!
@CodeBeauty
@CodeBeauty 3 года назад
You're so welcome! 🙏🏼🙏🏼
@reecount8801
@reecount8801 Месяц назад
best teacher
@dagimzereay9760
@dagimzereay9760 Год назад
Please do some video for searching and sorting algorithm in cpp ..... you are the best i can't underestand without you selina🥰
@Ryder_TechSpot
@Ryder_TechSpot Год назад
The way you make it look so easy is what i still don't get🤔. What I've been struggling to understand for days now is at my fingers tips within 10mins...Wow tnks alot🥰🥰😊i can sleep in peace at nite now(...relief).
@moularaoul643
@moularaoul643 3 года назад
Thank you.
@CodeBeauty
@CodeBeauty 3 года назад
🤗🧡
@shahabkhan1765
@shahabkhan1765 Год назад
nice explanation dear
@shridhanusham
@shridhanusham 2 года назад
thanks very much mam
@medicalpump9275
@medicalpump9275 3 года назад
I love quea code was nice
@usmankhan1065
@usmankhan1065 3 года назад
Upload more videos like...skills....how to switch from one programming language to another
@ChrisCarlos64
@ChrisCarlos64 3 года назад
If you can understand the concept of the lesson, you can transfer it across various languages usually quite well. Languages just have different syntaxes (some are closer than others) but the concepts generally are shared across general programming. In this example a Queue is just a structure, but the lesson really is First In First Out data organization. FIFO is a concept where you organize your data to be consumed later on based on the premise that you'll take the data and remove it when used based on its design. If you can understand that concept, you'll then be able to transfer it across programming languages where you can take FIFO and apply it to those languages once you know their syntaxes.
@CodeBeauty
@CodeBeauty 3 года назад
This is a very good answer. You'll need to learn the concept first and then try to apply it in real examples and practice as much as possible. When you have good understanding of it in one language, switching to some other language is just a matter of syntax which you can google in most situations. ☺️☺️
@usmankhan1065
@usmankhan1065 3 года назад
Okay I will practice and try my best... Thanks
@jithinfrancis6317
@jithinfrancis6317 Месяц назад
Thanks Saldina😀
@bubblesort8760
@bubblesort8760 3 года назад
If I ask, can you make a video about writing / reading into a binary file?Please
@krishnanaidu287
@krishnanaidu287 3 года назад
SalDina...Please continue CSS&HTML videos
@himanshurajpal7842
@himanshurajpal7842 3 года назад
Thanks didi👍 , I have a request please provide some ques. Material to build up the concept on OOP's Every corner.
@GenjaOrigins
@GenjaOrigins 3 года назад
Like my mother great teacher i know these but i watch to see if i forgot something, STL stuff is next level after OOP. Hashing/set/ordered map/unordered map , features of c++ like "for auto" future videos maybe.
@medicalpump9275
@medicalpump9275 3 года назад
Please next project show us how to do event based programming.
@abdellatif.x8127
@abdellatif.x8127 2 года назад
Well explained thank you saldina...btw, finally you switched to dark mode 😍😂
@satyaprakash2910
@satyaprakash2910 3 года назад
Saldina ma'am can you please first teach how to structure the program by writitng pseudocode and then writitng the code in every video. And can you please explain the code from 5th line to 13th line. Thank you for great video i first time done the queue datastructure and very easily understood the concept.
@mukulhatekar5025
@mukulhatekar5025 3 года назад
Plz Start a DSA course
@sergeistalarkin7969
@sergeistalarkin7969 3 года назад
подписываемся, ставим лайки. Love your video
@CodeBeauty
@CodeBeauty 3 года назад
Благодарность! 🙏🏼💙
@dileepbokka5525
@dileepbokka5525 2 года назад
Saldina do some vedios on java programming please
@cabdiraxmaankhaliiftahliil9217
@cabdiraxmaankhaliiftahliil9217 3 года назад
Saldina teacher make full series data structure lessons 🙏🙏🙏
@tekaai3409
@tekaai3409 Год назад
How do you reverse the order of a queue containing strings using two temporary queues?
@gjgb8836
@gjgb8836 2 года назад
Hello Saldina Can push front in a deque be implementet wiht complexity of o(1)? obs array implementation
@kiranbhanushali7069
@kiranbhanushali7069 3 года назад
Make video about creating cool cpp project from scratch.
@arunavapaul615
@arunavapaul615 2 года назад
hello, Good Day! Thanks for the video!! I have a question(completely new to C++ , just watched the ur 10hrs C++ training ), is there any way to print Queue element after push without pop ?? like for example, an user just gave input to the program and before executing i print the whole list. I dont want to maintain seperate buffer.
@patrick-8068
@patrick-8068 Год назад
Queue big verys​ did​ live​ OS.​ alike... Windows​ 11​ take​ Linux​ Mint​ take​ using namespace queue; Queue​ q​ = Aqueue(50);
@prashantlalwani527
@prashantlalwani527 3 года назад
Mam i have completed C language and i want to learn DSA so should i do DSA in C language or i learn C++ than do DSA in C++???? Plzzz help me mam.A huge respect to u.
@rajgiriyt8494
@rajgiriyt8494 3 года назад
hey mam can you please make a video on c++ function in details. the problem with me is that . i Have no Idea when and for which program I should use either (with return and with argument function) or (no return with argument function ) and so on. so I really don't know how #return works and how it actually send the value to main function.. Can you please make a video in it as long as you can.
@mohamedalsaedi4720
@mohamedalsaedi4720 Год назад
Saldina is this tutorial adequate to cover? or is there another information we should know about this subject
@johnjohn-nv9wb
@johnjohn-nv9wb 3 года назад
Hello CodeBeauty, I have finish ur course on C++ for Beginners here on youtube, whats next?
@jacob_rod1
@jacob_rod1 3 года назад
Please can you tell me how can I start learning C++ i don't know anything about it
@ramkumar-so8xw
@ramkumar-so8xw 3 года назад
Please teach STL IN CPP mam
@alrandolphvillegas2417
@alrandolphvillegas2417 3 года назад
Please shout out more than one person Ms. Saldina. 😊I know that I could not have the best solution but Im just hoping that if you do shout out of atleast five person, my probability of being mentioned will become a little high.
@ruplikusalkar2304
@ruplikusalkar2304 3 года назад
Ma'am what king of naming is this called in c++ Int first-- y -- ear in which the one letter is capital in middle
@marcelohpinheiro
@marcelohpinheiro 3 года назад
Hello Saldina, thank you for your videos, they are very well explained! Here comes my solution for your task: #include #include #include #include using namespace std; void printQueue(queue queue) { cout
@CodeBeauty
@CodeBeauty 3 года назад
Thanks for uploading your solution, it is pretty interesting 😃 I'll reveal the winner in today's video. It's set to premiere later today, don't miss 🤗🤗🧡
@jameszenos4045
@jameszenos4045 3 года назад
Why did you make a vector?
@marcelohpinheiro
@marcelohpinheiro 3 года назад
@@jameszenos4045 Because when I show the task in the function, specially on the line "queue.pop();", I still have in memory the task that is inside the vector
@naimishrishu3255
@naimishrishu3255 3 года назад
mam , is this complete course ?? cause I want to start learning data structures
@iammynick21
@iammynick21 3 года назад
What about writing a win32 api application?
@abdullahkamal8284
@abdullahkamal8284 3 года назад
Recently, I have started a data structure project to implement those structure, I am understanding the logic of them but I do not know how to start, can you help me to get over the 1st step? ! thanks a lot 💙
@CodeBeauty
@CodeBeauty 3 года назад
First learn the concepts and then try to apply the concepts in real examples and practice as much as possible. You'll probably make some errors, but you'll also make progress over time Use this example to practice. Your code can help someone else, and when ther people uplaod their code, you can use that to get new ideas, analyze the code and learn from what they did better. 🤗🤗
@abdullahkamal8284
@abdullahkamal8284 3 года назад
@@CodeBeauty thanks a lot, I find beauty in all things in that channel : instructor, codes and your followers with their participations
@lickguitars1276
@lickguitars1276 9 месяцев назад
is there a good tutorial where i could find how to use c++ builder, because most of the tutorial in c++ builder is so oudated and i dont know how to start
@khaled23109
@khaled23109 3 года назад
What's the Best book for beginners?
@hbm293
@hbm293 3 года назад
I personally started by using "C++ for Dummies" by Stephen Randy Davis
@savin1793
@savin1793 3 года назад
❤️❤️❤️
@azizbekomonov8254
@azizbekomonov8254 Год назад
I need queue as a class (for my homework)😢😢
@samqureshi9415
@samqureshi9415 3 года назад
Basic c++ before learning DS and algo ??
@CodeBeauty
@CodeBeauty 3 года назад
Check out this video, that is where bacics are explained. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-GQp1zzTwrIg.html Those are basics of most programming languages. Once you learn the concepts, you can apply them in any other programming language. You can also find individual videos if you need subtitles or you want to check out comments for a specific topic. For that you can check out playlists on my channel and find the one that you need. ☺️☺️
@DaleDix
@DaleDix 3 года назад
The cherno channel is what you want for that.
@moh_finesse
@moh_finesse Год назад
i wanna get shouted out!
@sanketvaria9734
@sanketvaria9734 Год назад
I want to use this in Unreal engine 4 but it's API making this impossible to understand.
@Bagnimpa
@Bagnimpa 3 года назад
Hi, i`m Michel and i like your courses. I would like to work with you is possible. Do you know the different types of software documentation that exist? Do you know why we should document software? please i need your help !!
@Bagnimpa
@Bagnimpa 3 года назад
Is it possible to contact you in privat?
@020aryantiwari6
@020aryantiwari6 2 года назад
please post more videos on dsa pleaseeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
@l.p.1967
@l.p.1967 3 года назад
I want this shoutout so much but I'm not sure that I'll have the best solution, can you shoutout more than one person please please 🙏🙏🙏
@CodeBeauty
@CodeBeauty 3 года назад
Hmm, thanks for the suggestion. I'd love to hear what other people think about this idea as well. ☺️☺️🧡
@ahmadebrahem4611
@ahmadebrahem4611 2 года назад
if u may provide a felxible solution because i wanted to make a function that gets number of tasks because in my solution ,code can only take 3 input tasks; i mean i want user to determine length of tasks ,Thanks in advance #include #include #include using namespace std; void print(queue Tasks) { while (!Tasks.empty()) { cout
@georgebentley-ricardo9445
@georgebentley-ricardo9445 2 года назад
Say hi to the algorithm 🤠👍
@CodeBeauty
@CodeBeauty 2 года назад
😁
@ChrisLocke1969
@ChrisLocke1969 3 года назад
I don't get it... how is this not just a simple array and nothing more??
@d_113d
@d_113d 3 года назад
i whent array and matrix
@CodeBeauty
@CodeBeauty 3 года назад
arrays: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-T76E09hnEuo.html two-dimensional arrays: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-mGl9LO-je3o.html 🤗🤗
@d_113d
@d_113d 3 года назад
@@CodeBeauty thanks 🌹🌹
@javiercantoy7522
@javiercantoy7522 3 года назад
Hi, here the code: (I cannot iterate the queue, in that case I put a third option: "3) List all queues" XD #include #include #include #include using std::cout; using std::cin; using std::endl; using std::queue; using std::string; void show_menu() { cout
@Herschae
@Herschae 2 года назад
3:23 they don't...
@mahmoudmostafa9028
@mahmoudmostafa9028 3 года назад
#savesheikhjarrah
@Linuxmusica
@Linuxmusica 3 года назад
please write the statement of the exxercise, not everyone understand all the english spoken words to understand your tasks.
@CodeBeauty
@CodeBeauty 3 года назад
You can find explanation in the description of the video, and the code is in the pinned comment! Hope it'll help! 😃😃
@medicalpump9275
@medicalpump9275 3 года назад
I am in love with you.
@guillealvarado2972
@guillealvarado2972 Год назад
Lo haces ver tan fácil... deberías aprender español para llegar a más gente. De todas forma no entendí ni un choto tu presentación ..
@mmkovan3008
@mmkovan3008 11 месяцев назад
hehe! gabagool
@mmkovan3008
@mmkovan3008 11 месяцев назад
lemme tell you somethin
@user-ll8rj6xl3i
@user-ll8rj6xl3i 3 года назад
I'm really curious about how much money do u have from all those inсеls coming here to watch a cute girl talking about nerd stuff I wish a was a cute girl myself (who doesn't though)
Далее
DO NOT Dunk Here ❌🏀
00:20
Просмотров 6 млн
It's the opposite! Challenge 😳
00:12
Просмотров 3,7 млн
Penalty: Portugal - Slovenia
02:03
Просмотров 1,3 млн
Learn Queue data structures in 10 minutes 🎟️
10:07
WHY did this C++ code FAIL?
38:10
Просмотров 189 тыс.
Every Chess Tip Explained In 10 Minutes
9:42
Просмотров 33 тыс.
what even is a "reference"?
5:44
Просмотров 121 тыс.