Learn Queue data structures in 10 minutes 🎟️

  Рет қаралды 143,327

Bro Code

Bro Code

Күн бұрын

Пікірлер: 209
@BroCodez
@BroCodez 3 жыл бұрын
import java.util.Queue; import java.util.LinkedList; public class Main{ public static void main(String[] args) { // ******************************************************* // Queue = FIFO data structure. First-In First-Out // A collection designed for holding elements prior to processing // Linear data structure // enqueue = offer() // dequeue = poll() // Where are queues useful? // 1. Keyboard Buffer (letters should appear on the screen in the order they're pressed) // 2. Printer Queue (Print jobs should be completed in order) // 3. Used in LinkedLists, PriorityQueues, Breadth-first search // ******************************************************* Queue queue = new LinkedList(); queue.offer("Karen"); queue.offer("Chad"); queue.offer("Steve"); queue.offer("Harold"); //System.out.println(queue.isEmpty()); //System.out.println(queue.size()); //System.out.println(queue.contains("Harold")); //System.out.println(queue.peek()); //queue.poll(); //queue.poll(); //queue.poll(); //queue.poll(); System.out.println(queue); } }
@mouradbougarne1162
@mouradbougarne1162 3 жыл бұрын
I hope that you complete this series by the end. As a self-taught developer, the data structure and algorithms are nightmares for me.
@XxAbdo
@XxAbdo 2 жыл бұрын
I know it may be a lot for you but can make another tutorial but with C# ?
@joyceasante8292
@joyceasante8292 Жыл бұрын
Practicing... import java.util.Queue; import java.util.LinkedList; public class Main{ public static void main(String[]args){ Queuequeue = new LinkedList(); //System.out.println(queue.isEmpty()); queue.offer("Temi"); queue.offer("Louella"); queue.offer("Kelly"); queue.offer("Kwabena"); //System.out.println(queue.peek()); //System.out.println(queue.size()); System.out.println(queue.contains("Thabang")); //queue.poll(); //queue.poll(); //queue.poll(); //queue.poll(); System.out.println(queue); } }
@jhonburnvillamor3760
@jhonburnvillamor3760 3 жыл бұрын
I finished your Java full course video, and I now have a solid foundation in java. I am also learning python with the video that you made. Now I am watching and studying data structures and algorithms from a book and mixed it with your videos in data structures and algorithms. I'm a computer engineering student, and all of your videos, from basic (like html, css, javascript) to other languages and concepts of computer science really helped me a lot and I can't thank you enough Bro!!!
@lowkey1281
@lowkey1281 3 жыл бұрын
You're so underrated! Hope your channel find the recognition it deserves🔥
@BroCodez
@BroCodez 3 жыл бұрын
Thanks Lowkey! We'll get there eventually
@lowkey1281
@lowkey1281 3 жыл бұрын
@@BroCodez I've learnt almost 2 years worth of my school syllabus (Python) from your channel, thank you!
@amolgahane5762
@amolgahane5762 3 жыл бұрын
That's absolutely true😳
@etcetc3800
@etcetc3800 3 жыл бұрын
@Lowkey you do know he's a senior coding dude at google right?
@BroCodez
@BroCodez 3 жыл бұрын
@@etcetc3800 nope. I code as a hobby lol
@fire_krystal
@fire_krystal Жыл бұрын
Best teacher of Java on KZbin period!! Thank you so much
@KlearChristal
@KlearChristal 2 жыл бұрын
I love this style of teaching. Thank you for the laughs and the knowledge!
@aislofi
@aislofi 3 жыл бұрын
The content is sooo amazing!!! I like your humor in your tutorials, that makes more interesting to watch xD
@cineloopers7131
@cineloopers7131 3 жыл бұрын
1)liked❤️ 2)commented 3) subscribed 👍🏻 Excellent explanation with examples thank you
@NobleAbsinthe
@NobleAbsinthe Жыл бұрын
You are legit bench pressing an entire generation of cs students with this course.
@IBAD.AMAN.07
@IBAD.AMAN.07 3 жыл бұрын
Huge Love from Bangladesh 🇧🇩 Bro. I've completed ur java all in one video. Thanks for diminishing the dreed of mine about java. InshaAllah, this Life Saving Channel surely will get millions of subscriber.Stay safe Bro. And it will be a pleasure to get a full Data Structures And Algorithm playlist from our BRO🖤✌️.
@BroCodez
@BroCodez 3 жыл бұрын
Thank you for the support Raef! We'll make it there eventually!
@majellaomahony204
@majellaomahony204 7 ай бұрын
very helpful for anyone without CS degree - love concise way of teaching important essentials - thanks
@Mr.Thicket
@Mr.Thicket 3 жыл бұрын
Bro my prof is making me do queues manually, like creating them in classes. Then I asked if I could just do it the normal way and he was like "oh yeah sure" this is 1000 times easier lol
@saarza9991
@saarza9991 27 күн бұрын
It's for you to learn the implementation
@muralishankar9719
@muralishankar9719 3 жыл бұрын
Excellent Channel That I've ever been on for coding classes.. You are the best Bro Code.
@tigercat1690
@tigercat1690 2 жыл бұрын
Good explanation of the queue. Liked it a lot !
@advancharofgames
@advancharofgames Ай бұрын
speeeeed running shorts
@Mohamed-uf5jh
@Mohamed-uf5jh Жыл бұрын
Good explanation of the queue. !
@LorenzoMLasam
@LorenzoMLasam 3 жыл бұрын
I think it would be great if you could also make videos about Search Algorithms, Sorting Algorithms, Recursions, and also the types of algorithms in your "Data Structure and Algorithms" playlist And your videos are amazing. Clear, short, and very easy to understand. Hope your channel would grow
@BroCodez
@BroCodez 3 жыл бұрын
Yes! I still have more topics to cover tho
@shuilin1499
@shuilin1499 Жыл бұрын
Can you make topic about how to implement them instead just introduce how to use them because you know this course mostly about implementation @@BroCodez
@juanvalerareales
@juanvalerareales 3 жыл бұрын
I was waiting till the end of the video to smash that like button, as I always do, but when I saw the wild Karen appearing I had to pause the video and give your deserved "like", brooo.
@BroCodez
@BroCodez 3 жыл бұрын
Thank Juan!
@proalexv
@proalexv 2 жыл бұрын
Super helpfull, thank you for the pictures, explaining the interface with a diagram and showing code with java!
@ChiragGarg-nv8pj
@ChiragGarg-nv8pj 10 ай бұрын
sir i cant understand dsa in java plz u can make vedio of dsa in c programing plz i request u becoz i didnt understant programing on youtube except your channel u r best teacher
@olgavasileva2521
@olgavasileva2521 2 жыл бұрын
I am waiting for 1M. You completely deserved it.
@gjsatru3383
@gjsatru3383 3 жыл бұрын
Your way of explanation is awesome And you cover every detail👍👍👍
@Sub-zero1123
@Sub-zero1123 3 жыл бұрын
Your classes are great, keep it up
@rangeattack
@rangeattack 3 ай бұрын
Fantastic
@KateKarry-lv8lu
@KateKarry-lv8lu 2 ай бұрын
good😄
@virendramali1754
@virendramali1754 Жыл бұрын
Thanks for providing easiest way to learn DSA in java
@yohanaf
@yohanaf 3 жыл бұрын
This guy fulfilled my dream: learning from memes. Your teaching is the best and your lessons are really funny! haha
@gameGXT
@gameGXT 2 жыл бұрын
Super Fantastic
@aditya_asundi
@aditya_asundi 3 жыл бұрын
Superb video bro!! and congrats for crossing 50k subs.
@Sayantan_627
@Sayantan_627 2 жыл бұрын
Your teaching style is amazing. Don't know why YT suggested me so late.
@TonyMalik7
@TonyMalik7 3 жыл бұрын
😍😍😍😍😍nicee video
@BroCodez
@BroCodez 3 жыл бұрын
Thank you Tony!
@Bromon655
@Bromon655 Жыл бұрын
These lessons are invaluable, however when CS grads say that a degree "teaches you how to think," I'm reminded of moments like 3:08 where a deep dive into documentation and knowing what to look for resulted in the best solution to a problem. I fear I could spend years teaching myself to code, but I couldn't guarantee I could teach myself to think correctly.
@MohamedIbrahim98
@MohamedIbrahim98 Жыл бұрын
I wanna thank you for your great work, such an amazing channel 👏
@baubaudinamo
@baubaudinamo 3 жыл бұрын
You promised and you delivered! Nice video Bro!
@Fedo_94
@Fedo_94 3 жыл бұрын
Salut
@Sid-ot8dx
@Sid-ot8dx Ай бұрын
you sir, are a life saver
@victorrezende6002
@victorrezende6002 Жыл бұрын
Nice class
@percivalgebashe4376
@percivalgebashe4376 Жыл бұрын
Nice
@wolanus
@wolanus 3 жыл бұрын
Great video.
@Bose141
@Bose141 Жыл бұрын
the way you teach is amazing like the cool meme channels . i dont feel bore. as i did t learn java it has been a hard time to convert your lecture in to cpp ; thank you ;
@СергейЕмельянов-е9з
@СергейЕмельянов-е9з 3 жыл бұрын
I love you, bro! From Russia with love :) Your lessons is best!) And I have PS4 too ;)
@silaadmiraldo
@silaadmiraldo 9 ай бұрын
what a chad!, thanks a lot bro, very easy to understand with those example😂
@Muhammadfaisal-kd9kx
@Muhammadfaisal-kd9kx Жыл бұрын
Thankyou well explained Brother.
@pujyamvssnkdheeraj5069
@pujyamvssnkdheeraj5069 Жыл бұрын
Thank you so much bro - you helped us a Lot to learn .. Congratulationls . you will very soon reach 1M ..🎉🎉🎉🎉🎉🎉🎉🎉
@Remolhunter97
@Remolhunter97 3 жыл бұрын
Thank you ! Learning with your videos is wonderfull
@BroCodez
@BroCodez 3 жыл бұрын
thanks for watching Remolhunter!
@emreotu4464
@emreotu4464 2 ай бұрын
Learn Queue data structures in 10 minutes 🎟
@ihig912
@ihig912 9 ай бұрын
Thanks Dude you helped me with my final high school exam
@isabellemonkey29053
@isabellemonkey29053 Жыл бұрын
great analogy, thanks for the video. made it fun !
@arnabsengupta8092
@arnabsengupta8092 3 жыл бұрын
Love you bro ❤...love from india
@AllenAndersonTaylor
@AllenAndersonTaylor 2 жыл бұрын
Thank you for this! You rock. I'm a computer science student.
@brandonkruger9040
@brandonkruger9040 3 жыл бұрын
Thank you for the awesome explanation.
@BroCodez
@BroCodez 3 жыл бұрын
Glad it was helpful! Thanks for watching!
@virendramali1754
@virendramali1754 Жыл бұрын
Plzz make more videos related to Java
@danishuddin9752
@danishuddin9752 2 жыл бұрын
Lovely explanation Bro thank you very much!
@iamfromasean705
@iamfromasean705 3 жыл бұрын
Bro, please continue your channel. Don't give up.
@BroCodez
@BroCodez 3 жыл бұрын
I'm still going! Don't worry!
@inamullahkhan7793
@inamullahkhan7793 3 жыл бұрын
I am so excited for DSA and thinking how much tutorials we will have to enjoy at the end of this series 🤭😃
@BroCodez
@BroCodez 3 жыл бұрын
Thanks Inam! Idk how many videos I will add to this playlist yet lol
@FaresKhalid
@FaresKhalid 3 жыл бұрын
You're my preferable instructor :)
@shroomer3867
@shroomer3867 9 ай бұрын
Thank you, you explained it pretty well!
@felipemedrano5363
@felipemedrano5363 3 жыл бұрын
Great video, Thank you so much
@BroCodez
@BroCodez 3 жыл бұрын
Thanks for the support Felipe!
@dannyrand2543
@dannyrand2543 2 жыл бұрын
Really helpful, thanks bro!
@nileshshastri4341
@nileshshastri4341 Жыл бұрын
Save this man at any cost.
@shuilin1499
@shuilin1499 Жыл бұрын
Hello, sir , thank you for such amazing vidoe. Can you make topic about how to implement them instead just introduce how to use them because you know this course mostly about implementation
@RichMo86
@RichMo86 3 жыл бұрын
👏🏼👏🏼👏🏼
@Jitoro5
@Jitoro5 Жыл бұрын
Thanks, really understandable !
@djmsgjsjsjs9398
@djmsgjsjsjs9398 3 жыл бұрын
you are the best ,dude
@oguzhantopaloglu9442
@oguzhantopaloglu9442 3 жыл бұрын
i know all of these but im still watching because these videos are amazing
@BroCodez
@BroCodez 3 жыл бұрын
Thanks Oğuzhan! Hopefully it will be a good refresher at the very least
@Misha4690
@Misha4690 11 ай бұрын
nice video bro, helped me a lot!
@Daaninator
@Daaninator 3 жыл бұрын
When "Sister Code" ?
@BroCodez
@BroCodez 3 жыл бұрын
oh shit, that's a cool alternate channel name
@KaosDragonLOC
@KaosDragonLOC Ай бұрын
I'd just okay call the manager and watch my manager have to deal with her craziness
@alicjarottau4385
@alicjarottau4385 2 жыл бұрын
that was very nice explanation. II think it would be very developmental if u would add how to make fifo with define size of queue
@MrLoser-ks2xn
@MrLoser-ks2xn 2 жыл бұрын
Thanks
@bajron3325
@bajron3325 3 жыл бұрын
Harold is senior Java developer. That will be some of you guys in 20 years.
@michaelcamp2870
@michaelcamp2870 Жыл бұрын
Thank you
@helloworldcsofficial
@helloworldcsofficial 5 ай бұрын
Great. Is there a similar video but with Python?
@charlenebowman9112
@charlenebowman9112 Жыл бұрын
I would say I am the manager!😆
@danielmilewski7659
@danielmilewski7659 2 жыл бұрын
Wow you are the best teacher i have ever seen! The explanation and presentation is gold standard. GUYS this needs channel needs some LOVE! Like, sub and comment! Thank you Bro!
@deafprophets9009
@deafprophets9009 Жыл бұрын
Thanks Bro
@constantinecodes6388
@constantinecodes6388 3 жыл бұрын
I recently found your channel and I quite like your videos. Might I suggest doing video clips for most of the data structures? Also does it have to be in Java 😢, would you consider Python or JS/TS as an option?
@BroCodez
@BroCodez 3 жыл бұрын
Thanks for watching! I'll try and figure something out, unfortunately the syntax really varies depending on the language. I wish it was all consistent for each programming language.
@constantinecodes6388
@constantinecodes6388 3 жыл бұрын
@@BroCodez I know it's quite different for JS but if you do it in Python it would be really nice. Keep up the great work tho'
@oguzhantopaloglu9442
@oguzhantopaloglu9442 3 жыл бұрын
Why would anyone need to know data structures in python lmao
@constantinecodes6388
@constantinecodes6388 3 жыл бұрын
@@oguzhantopaloglu9442 cause python is a very neutral language. Whenever you build data structures in JavaScript for example, you build them in a very specific way using object. That same way may not be applicable to other languages, whereas with python that might be more easily transferable.
@oguzhantopaloglu9442
@oguzhantopaloglu9442 3 жыл бұрын
You would never really need to know them for python, python is a dynamicly typed slow ass language with a lot of built in data types like list, tuple, dict and set. Seeing them in Java or C/C++ is way better and since most of the followers want Java it's obvious what it should be. Maybe he could do one for JS but python is pretty useless in terms of learning ADT.
@iRandroid
@iRandroid 3 жыл бұрын
❤️❤️❤️
@blue.v2
@blue.v2 2 жыл бұрын
big W thanks gang my teacher was bugging
@neotericfossil
@neotericfossil Ай бұрын
Thank you!
@ctluwua7695
@ctluwua7695 3 жыл бұрын
I don't Know what to comment BUT... WOW
@MultimediaCizzy
@MultimediaCizzy 3 жыл бұрын
Please more of this 🙏
@BroCodez
@BroCodez 3 жыл бұрын
Sounds good! More DS & A comin' up!
@vuchinh9989
@vuchinh9989 3 жыл бұрын
Thank you! Your lesson is very excited as always (^^^)
@NirmitKalyani
@NirmitKalyani Жыл бұрын
Hey bro please help me its showing syntax error and red line under dot(.) And semicolon(;) in queue.offer();
@emirhanyldz4093
@emirhanyldz4093 Жыл бұрын
broooo this is awesome
@TheEvertonDias
@TheEvertonDias Жыл бұрын
Thanks, Bro!
@Naruto_Uzumaki_
@Naruto_Uzumaki_ Жыл бұрын
This guy is so cool 😭
@RemoteSynergy
@RemoteSynergy Жыл бұрын
Hi! What is the photo editing program you used to display the Queue example? It looks similar to Microsoft Paint but has more advanced features
@imhungry7692
@imhungry7692 3 жыл бұрын
nice, you still the best
@ShashankKokkula
@ShashankKokkula 6 ай бұрын
The BEST BRO!!!!
@النمرالمقنع-ص6ص
@النمرالمقنع-ص6ص Жыл бұрын
THANKS1
@xames7789
@xames7789 3 жыл бұрын
Thank u broo
@emiralpkilic5669
@emiralpkilic5669 Жыл бұрын
my bro
@guitarguy07
@guitarguy07 Жыл бұрын
thank you!
@workingricardo9373
@workingricardo9373 Жыл бұрын
lovd it!
@hugocaisse9079
@hugocaisse9079 Жыл бұрын
Thanks bro!
@thomasbravo790
@thomasbravo790 3 жыл бұрын
♥️
@elisabethsaez3046
@elisabethsaez3046 3 жыл бұрын
❤️
@RuslanLomaka
@RuslanLomaka Ай бұрын
Hope Harold had a good rest after this video. Standing long time is exhausting for senior people.
@amolgahane5762
@amolgahane5762 3 жыл бұрын
Hey Bro code , Can you make course on Android development? pls !! . . . And thank you!! for your all of this course 😊😊 it's very useful 💯
@BroCodez
@BroCodez 3 жыл бұрын
You're welcome! Maybe if enough people are interested in Android, then I could
@turtleguy97
@turtleguy97 3 жыл бұрын
are these all videos for data structures
@jakeblake06
@jakeblake06 Жыл бұрын
Coincidentally leaned back in my chair at the same time you told me to
Learn Priority Queue data structures in 5 minutes 🥇
5:01
Bro Code
Рет қаралды 164 М.
8 Data Structures Every Programmer Should Know
17:09
ForrestKnight
Рет қаралды 244 М.
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН
Learn Linked Lists in 13 minutes 🔗
13:24
Bro Code
Рет қаралды 381 М.
My 10 “Clean” Code Principles (Start These Now)
15:12
Conner Ardman
Рет қаралды 316 М.
Learn Stack data structures in 10 minutes 📚
10:07
Bro Code
Рет қаралды 253 М.
The Absolute Best Intro to Monads For Software Engineers
15:12
Studying With Alex
Рет қаралды 679 М.
Java HashMap 🗺️
13:05
Bro Code
Рет қаралды 93 М.
Dependency Injection, The Best Pattern
13:16
CodeAesthetic
Рет қаралды 909 М.
Understanding B-Trees: The Data Structure Behind Modern Databases
12:39
Learn Java in 15 Minutes (seriously)
19:50
ForrestKnight
Рет қаралды 175 М.
Hash Tables and Hash Functions
13:56
Computer Science Lessons
Рет қаралды 1,6 МЛН
три кошака и ростелеком
0:26
Мистер Денала
Рет қаралды 2,4 МЛН
Robot 🤖 cleaning 🧹
0:57
Bunnal 𝚃𝚎𝚌𝚑
Рет қаралды 4,7 МЛН
Monster My Best Friend 🥹❤️👻 #shorts Tiktok
1:01
BETER BÖCÜK
Рет қаралды 29 МЛН