Java Data Structures Tutorial

  Рет қаралды 343,090

Amigoscode

Amigoscode

Күн бұрын

Пікірлер: 229
@TheCodejuice
@TheCodejuice 2 жыл бұрын
Hey. Just wanted to give you a thanks for making these types of videos. Last year during the pandemic I was ~5 months out of school and was struggling to find a job in tech. I randomly found your Spring Security tutorial video and did my best to follow along consistently day after day. I believe I landed my first job because of you and here I am again because I know your content quality is amazing. Thanks again!
@rahulchavan6488
@rahulchavan6488 2 жыл бұрын
Hey bro, can you create second part of it with advanced data structures like binary trees, heaps etc
@MatejDrbohlav01
@MatejDrbohlav01 2 жыл бұрын
Yes, that was what I was coming for ! It would be great! :))
@OmoruyiOmofonmwan
@OmoruyiOmofonmwan 2 жыл бұрын
Yeah that would definitely be beneficial.
@marcuspaz4306
@marcuspaz4306 2 жыл бұрын
^ not entirely, java can handle those data structures i.e BST, AVL Trees
@rj27thug78
@rj27thug78 2 жыл бұрын
@@marcuspaz4306 u mean we can't implement all ds in java😢 ?
@IB999yo
@IB999yo 10 ай бұрын
That's gonna be awesome!
@funnycats9738
@funnycats9738 2 жыл бұрын
Asalamualeykoum bro from Russia! I'm recently a software engineer and I very appreciate your channel.
@gradientO
@gradientO 2 жыл бұрын
what's your tech stack?
@funnycats9738
@funnycats9738 2 жыл бұрын
@@gradientO Spring boot and Laravel
@Sauce-ke
@Sauce-ke 2 жыл бұрын
This is what I want!! Coding from the beginning and explaining why you writing that code. Unlike to the other youtubers who already have codes and expects that you already understands it
@mykolahorkov3021
@mykolahorkov3021 Жыл бұрын
Hey Nelson! Good explanation as always, great job! One remark on 5:22. For arrays it's O(1), not O(n) complexity to get specific element by it's place in an array.
@tinasurlan6332
@tinasurlan6332 Жыл бұрын
I was searching in comments to see if anyone pointed it out.
@mario_luis_dev
@mario_luis_dev 2 жыл бұрын
Retrieving an element from an array is O(1), not 0(n). That’s one advantage over a linked list, for example, which is 0(n). Now *removing* or *adding* an element is where we have the complete opposite situation, where linked lists are O(1) and arrays are O(n)
@guganilbyte
@guganilbyte 2 жыл бұрын
I thought I misheard that lol.
@raianmr2843
@raianmr2843 Жыл бұрын
The latter part isn't necessarily true in practice (or theory for that matter). Linked lists don't play nice with modern processors and result in frequent cache misses. Unless you're dealing with an insanely large number of elements, there's no need to even consider linked lists. Also, if you're inserting and deleting to arrays you're already using a smart container like Java's ArrayList or C++'s vectors -- both of which allow for amortized O(1) operations. Translation: array insertions and deletions are O(1) most of the time, and O(n) occasionally.
@rxtechandtrading
@rxtechandtrading 2 жыл бұрын
This is directed at Amigoscode!! -i normally dont comment on tutorial vids BUT i am making an exception for this channel..You are doing a fantastic, amazing job. Do NOT stop what you are doing! Your videos are well edited and your presentation and narration methods are truly excellent-FAR better than most of the MORONS on youtube who make feeble attempts to introduce complex coding and software engineering topics to the masses..Seriously man you are doing our community of global programmers a big favor, and I appreciate it-just wanted u to know this..
@dtPlaythroughs
@dtPlaythroughs 2 жыл бұрын
Would love more advanced videos/courses. You explain things so clear and concisely that I'd love for you to break down more complicated concepts and libraries with focus on real world use cases.
@juliana5355
@juliana5355 Жыл бұрын
Thank you for making this. I'm doing terrible with my class because my life is so busy and my professor teaches nothing during class in practice, just powerpoints. I have to read like 250+ pages to learn things he's teaching like he assigns and I'm absolutely lost. thank you. this is amazing.
@Vyse86
@Vyse86 2 жыл бұрын
Needed this 2 months ago, but I'll take it now haha. Thank you so much! Great tutorial!
@kubamusialik5188
@kubamusialik5188 2 жыл бұрын
When I started gathering info about data structures you came up with this video, amazing stuff man!
@rajkhare5949
@rajkhare5949 Жыл бұрын
Wow man...awesome...I am a Java professional and I recently started to watch your video on youtube...you are superb...your teaching style is very good and gives important details point to point with the required practical approach...I have seen your course on your sites too...why don't you come to Udemy so your course is accessible globally conveniently...you really helping people!!...thanks for your efforts and your positive mindset!!!!
@alexandergeorgiev2631
@alexandergeorgiev2631 2 жыл бұрын
Thanks for showing the shortcuts as well
@mebaysan
@mebaysan Жыл бұрын
Thanks for this content. I'm switching from Python to Java for a new job position. And this is very helpful for me to refresh and glance the data types in Java.
@mattsmith6828
@mattsmith6828 2 жыл бұрын
@ 5:17 - "So for you to retrieve a element from an array is just O(n). Right, so it's really fast." Maybe this was just a mistake you made without realizing it, but retrieving an element from an array is O(1) Great video! Not trying to be mean or anything. Keep up the good work!
@atalibcodinglevel7518
@atalibcodinglevel7518 2 жыл бұрын
Brother Neilson may Allah make things easy for you. Thank you very much ❣
@andrewlabada8018
@andrewlabada8018 2 жыл бұрын
Everytime you upload I'm always excited to watch your courses. Thank you for existing sir and creating Good quality content.
@nicholascherry5962
@nicholascherry5962 2 жыл бұрын
DUde you're awesome for this video. I took data structures and OOP in Java and struggled linking all the concepts together. You tied it all together concisely and in a very-well done manner. I'm confident stepping into LeetCode easies w/ a solid foundation. I can grind out the logic, but needed somewhere to start from :) I need to go over OOP concepts again but you made it a hell of a lot easier my friend. Best
@daviduntalan
@daviduntalan 2 жыл бұрын
1:38:40 Note to myself: if you don't override its classes, its comparison is based on object's memory address instead of its content.
@redmi9prime198
@redmi9prime198 11 ай бұрын
Alhamdulillah, the best course on DSA
@sekhafrid3459
@sekhafrid3459 2 жыл бұрын
Your way of teaching is great... 💜 Best refresher on java DSA
@mateuszorlicki5907
@mateuszorlicki5907 2 жыл бұрын
Thanks for the work you do. Greetings from Poland
@polimorphic13
@polimorphic13 Жыл бұрын
Thank you so much for this course. I really liked learning while reading the java raw and original implementations in IntelliJ.
@hungnguyenviet942
@hungnguyenviet942 2 жыл бұрын
i have expected this course for a long. Tks sir!
@marcin2x4
@marcin2x4 Жыл бұрын
Regarding Arrays 9:33, why System.out.println(colors) wouldn't work? Why the toString method is required? Thank you for all the content. I found it super usefull!
@Raqibur_Rahman
@Raqibur_Rahman Жыл бұрын
oya alaikumussalaam oya rohmatollah... Thanks a lot...Jazakallahu khoir
@seyedaliroshan2386
@seyedaliroshan2386 2 жыл бұрын
Love to see another muslim has this much knowledge and share it, Allah bless u brother and thanks for teaching us
@shingiraibondai747
@shingiraibondai747 2 жыл бұрын
Thank you for your dedication 👏🏿. A lesson on Advanced data structures will be appreciated
@SpawnSniper
@SpawnSniper 2 жыл бұрын
This guy knows his Java.!
@biasforaction7860
@biasforaction7860 2 жыл бұрын
5:22 retrieving an element from an array (provided you have the index) is O(1) right? You’ve got the index of the element, so it’s a constant time operation. If you were searching for an item in the array (and you didn’t have the index) itd be O(n)
@TooGoodDynamo
@TooGoodDynamo 2 жыл бұрын
If you have the index of an array then it is O(1) since you go directly to it always in one step.
@user-sapdev
@user-sapdev Жыл бұрын
Really Great Content bro.. with in depth explanation in a simple clear cut way. Millions of tonnes of Thanks for efforts in creating this content.
@yashsonawane905
@yashsonawane905 2 жыл бұрын
Hash Functions and HashCode was the best part 🚀
@sk3ptik0s49
@sk3ptik0s49 2 жыл бұрын
I really need to watch this from beginning to end.
@jurabeknormatov162
@jurabeknormatov162 2 жыл бұрын
Ma sha Allah bro
@suapelol
@suapelol 2 жыл бұрын
5:15 is wrong, Array lookup is always O(1). Arrays contain objs with fixed size so u can do size * i to have the position of lookup
@Ahmedakhachkhouch
@Ahmedakhachkhouch 2 жыл бұрын
Thanks for your sample explanation
@srunrothaaudiobook9337
@srunrothaaudiobook9337 2 жыл бұрын
thank so much, I got much better with you, And I finished this course also.
@chachacha5110
@chachacha5110 2 жыл бұрын
1:09:03 "Set of balls" caught me off guard lol
@Bks715
@Bks715 8 ай бұрын
You're epic bro! Your British accent makes it even better.
@dhikrelhakim7852
@dhikrelhakim7852 2 жыл бұрын
bismi alla bismi allah tank you my freind lah ybarak fik
@astronaut1751
@astronaut1751 Жыл бұрын
Voaleykum assalam. Awesome content. جزاك اللهُ خيراً
@awakeamari5302
@awakeamari5302 2 жыл бұрын
Good work Amigo I am a self-motivated self-taught Java
@lone_warrior3672
@lone_warrior3672 Жыл бұрын
Please make a series on Java 8 Stream APIs.
@Devivl
@Devivl 8 ай бұрын
Thank you! You are a best teacher!
@cesur1230
@cesur1230 2 жыл бұрын
You are awesome brother , please make new deeper videos about Data Structures in Java (contains Node please) 🙏
@briankipkurui6581
@briankipkurui6581 2 жыл бұрын
Awesome content Nelson ❤️ , consider one day to make another video about frontend and backend login with jwt,access token refresh token, session I'd and cookies
@mariemjabloun4500
@mariemjabloun4500 2 жыл бұрын
Salamou Alaykom, great videos as usual
@e-mathos40
@e-mathos40 2 жыл бұрын
when you cant hate the video , love this mans videos , thanks :)
@michelchaghoury870
@michelchaghoury870 2 жыл бұрын
you have gr8 content I went from 0 to advanced in java and spring boot please we need more and more content, like advanced DBA(Postgres or MySQL), End2End Testing, more in deep in DS and Algos, we need your help tnx a lot and please keep going
@prashantmishra5691
@prashantmishra5691 2 жыл бұрын
Thanks Nelson, always appreciate your efforts for the community.
@MuazAtik
@MuazAtik Жыл бұрын
Thank you very much bro 🙏🙏👊👊 May Allah bless you
@kasunakalanka3666
@kasunakalanka3666 2 жыл бұрын
man you're a gem
@Alexlewis222
@Alexlewis222 2 жыл бұрын
You are the 🐐. Holiday greetings from America!
@yonderwire
@yonderwire 2 жыл бұрын
Thanks for this u read my mind!!!!
@Aptitude_guide
@Aptitude_guide 2 жыл бұрын
Assalamualaikum , I am from India. you are amazing .please make a video on threads , multithreading and it's applications.❤️
@faisalahmed2228
@faisalahmed2228 2 жыл бұрын
Please create a second part of it with advanced Data structures
@ilkinisgenderov7629
@ilkinisgenderov7629 2 жыл бұрын
Thank you, Brother you are the best. God bless you
@mohamadbata5687
@mohamadbata5687 Жыл бұрын
thank you very much man this course seems to be very good
@mohamedriaz7101
@mohamedriaz7101 2 жыл бұрын
Excellent video! :) Clear and concise. Now, I would really appreciate if you can post a video on Algorithms (Search, Sort), Big O notation, Space complexity.
@erfan_rad
@erfan_rad 2 жыл бұрын
Been looking so long for a good video on Data structure and algorithms in java..
@Ezzedini
@Ezzedini 2 жыл бұрын
Amiiiiigoscode, YES, FINALLY, YESSS thank you !!! data structure, YESSS
@th_editz598
@th_editz598 5 ай бұрын
TQ...brooooooiio🎉
@deorgeneslorddj
@deorgeneslorddj Жыл бұрын
Awesome! The hashcode explain was amazing!
@yyl1692
@yyl1692 2 жыл бұрын
Thank you for constantly uploading high quality content that we just need.
@erfan_rad
@erfan_rad 2 жыл бұрын
Please create second part of it with advanced data structures like binary trees, heaps etc
@Saskia-ct2vr
@Saskia-ct2vr 2 жыл бұрын
Can you please make a Algorithm full course?
@waqasahmed8660
@waqasahmed8660 Жыл бұрын
Thanks a lot for this great explanation of Data structures in Java.
@belongingvideos7269
@belongingvideos7269 2 жыл бұрын
Voaleykum assalam, bro. Awesome content. I have summed up before watching it. Because it is absolutely useful content for all javaholics. جزاك الله خيرا
@md.marufurrahmanremon3095
@md.marufurrahmanremon3095 Жыл бұрын
Thanks a lot. Awesome Video, great learning.....
@MumMerry
@MumMerry 6 ай бұрын
Better than Mosh H. Thank you
@bakhtiyor_sulaymonov
@bakhtiyor_sulaymonov Жыл бұрын
Assalamu alaykum brother. Thanks for the tutorials 👍
@spicythunder4462
@spicythunder4462 2 жыл бұрын
Thank you Amigo you are the best.
@fabiank.9205
@fabiank.9205 Жыл бұрын
This is such a good tutorial. Thank you sm
@khalidelgazzar
@khalidelgazzar 10 ай бұрын
Great video 😊 💯 thank you 👍
@MuksEmmaN
@MuksEmmaN Жыл бұрын
Thank you for this Can you do a video on socket programming in Java?
@tommasotiso6805
@tommasotiso6805 Жыл бұрын
you are great, fantastic channel, but I'd like to see a video about communication between java spring boot with DB, SQL and mongoDB
@haticekübra.s
@haticekübra.s 11 ай бұрын
Wa aleikum assalam brother! Thanks a lot for great experience and informations :)
@jai4859
@jai4859 2 жыл бұрын
I hope you do MAVEN tutorial in future.
@Kaox
@Kaox 2 жыл бұрын
This is what I was looking for since last week. Thanks, this will be very useful to me.
@МаксимЯрема-е8щ
@МаксимЯрема-е8щ Жыл бұрын
Thanks! That helped me a lot
@deepthinker798
@deepthinker798 Жыл бұрын
thanks much fam for the love
@saidyahya7344
@saidyahya7344 2 жыл бұрын
Amazing session. thanks brother
@dr_ejahn
@dr_ejahn Жыл бұрын
nice vid worth the time if its too long for u just fasten it up
@letslearntogether1449
@letslearntogether1449 2 жыл бұрын
Oya alaikumussalam oya rohmatollah Thank you!
@vpenywise
@vpenywise 2 жыл бұрын
So great to watch and easy to follow, thank you!
@antonmariadas7747
@antonmariadas7747 2 жыл бұрын
Wa alkm salam just what i was looking for 👍
@asiis181
@asiis181 2 жыл бұрын
Awesome explaination
@germanbarrera5715
@germanbarrera5715 2 жыл бұрын
Very Useful Video Nelson! I agree with the MVP for you!
@victorgoncalves3728
@victorgoncalves3728 2 жыл бұрын
I've learned a lot from your videos, thanks!
@NobleeCam
@NobleeCam 2 жыл бұрын
1:09:03 Pause - We have a set of what ?? Great video, super informative. Appreciate the effort you put in!
@rudreshjha7166
@rudreshjha7166 Жыл бұрын
Nice Tutorial Man
@arslonboyisorov845
@arslonboyisorov845 2 жыл бұрын
super, thank you bro
@mikifarinics6149
@mikifarinics6149 2 жыл бұрын
You are amazing, mate. Keep doing it.
@lecole_joy_code28
@lecole_joy_code28 2 жыл бұрын
Good job , thanks a lot , I watched the full videos and I learned a lot .... thanks once again
@syedasim6813
@syedasim6813 11 ай бұрын
Thank you, such an information and helpful video.
@buraxta_
@buraxta_ 2 жыл бұрын
That was an amazing explanation dude, thanks so much!
@serghei9011
@serghei9011 2 жыл бұрын
Thank You for your effort!
@kaviarasan4999
@kaviarasan4999 2 жыл бұрын
Most awaited 🔥 Still need more in DS !!
@semilife
@semilife 2 жыл бұрын
You are a legend, very informative and easily understandable coverage.
@rabeeasafadi6613
@rabeeasafadi6613 2 жыл бұрын
Thank you for the quick course, It was very fun learning :)
Functional Programming with Java Streams API
50:00
Amigoscode
Рет қаралды 180 М.
Top 7 Data Structures for Interviews Explained SIMPLY
13:02
Codebagel
Рет қаралды 215 М.
Это было очень близко...
00:10
Аришнев
Рет қаралды 7 МЛН
Yay, My Dad Is a Vending Machine! 🛍️😆 #funny #prank #comedy
00:17
World’s strongest WOMAN vs regular GIRLS
00:56
A4
Рет қаралды 8 МЛН
Will A Basketball Boat Hold My Weight?
00:30
MrBeast
Рет қаралды 132 МЛН
Generics In Java - Full Simple Tutorial
17:34
Coding with John
Рет қаралды 1,1 МЛН
the right way to organise your code
17:33
Amigoscode
Рет қаралды 200 М.
Set and HashSet in Java - Full Tutorial
20:43
Coding with John
Рет қаралды 226 М.
Java Functional Programming | Full Course
2:22:15
Amigoscode
Рет қаралды 575 М.
Top 7 Algorithms for Coding Interviews Explained SIMPLY
21:22
Codebagel
Рет қаралды 429 М.
Learn Java in 15 Minutes (seriously)
19:50
ForrestKnight
Рет қаралды 101 М.
Brutally honest advice for new .NET Web Developers
7:19
Ed Andersen
Рет қаралды 234 М.
Это было очень близко...
00:10
Аришнев
Рет қаралды 7 МЛН