Data Structures Explained for Beginners - How I Wish I was Taught

  Рет қаралды 579,849

Internet Made Coder

Internet Made Coder

Күн бұрын

Пікірлер: 298
@peterscott7975
@peterscott7975 2 жыл бұрын
I finished the cs50x course a month ago and just finished cs50w. It has literally turned me from knowing nothing about programming to the point that I want to code every single day. I just can't think you enough for recommending these amazing courses for me. Btw, the video is great. Hope your channel gain back views
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
So awesome to hear, that is exactly what I want to do with this channel: to get people excited to code! CS50 is what initially did that to me!!
@msdhoni075
@msdhoni075 2 жыл бұрын
@@InternetMadeCoder hi where I can watch cs 50 course ?
@JG-lb8xk
@JG-lb8xk 2 жыл бұрын
is there any link where I can get this course free of charge?
@ChargeLaster
@ChargeLaster 2 жыл бұрын
@@JG-lb8xk It's free, the only thing you have to pay is the certificate which is if you only want to have the certificate
@bollvigblack
@bollvigblack 2 жыл бұрын
hey I have question since I'm thinking to take those courses right now. cs50 course says web programming with python and JavaScript and why it says python I don't understand because python is used for back end or for something other, since when python became language for web development?
@BitwiseMobile
@BitwiseMobile Жыл бұрын
I LOVED data structures! One of my favorite classes back in 1991 was Data Structures In C. This was before they started teaching Java in the Uni, which was before they started teaching Python as they do now. Back in the day you had two choices - C and Pascal. I saw the writing on the wall and I knew C was the future, so I focused on C (after taking one requisite Pascal class). Anyway, that data structures class was the best class I ever attended, and I probably use more from that class in my every day coding than any other class I attended for programming. We learned deques, linked lists, queues, stacks, rb trees, binary trees, and probably a half a dozen more data structures that I am forgetting right now. In fact the first thing I do when I learn a new language is implement those data structures. Even though they might already be implemented as a feature of the language I will implement them anyway to get a better understanding of the language. For example, most duck typed languages have associative arrays built in as part of the language implementation, but that doesn't stop me from creating a red-black tree in that language anyway :D. I live and breath computers, always have, so for me anything that helps me understand them better is a goal for me. I'm auto-didactic and taught myself assembler on the IBM XT (back in 1986) using the DOS Debug command when I was 14, so learning about languages is something that I really enjoy.
@milkman7381
@milkman7381 Жыл бұрын
What do you recommend for someone trying to study data structures by themself
@B3Band
@B3Band Жыл бұрын
Optimize this comment please
@thegreenxeno9430
@thegreenxeno9430 Жыл бұрын
This comment doesn't follow grammar conventions. Please refsctor it.
@lovething5296
@lovething5296 Жыл бұрын
lmao what are these replies. anyways, awesome story!
@krishnakumarsubramanian5447
@krishnakumarsubramanian5447 11 ай бұрын
Enough with your life story. Focus on telling us how THIS video was useful.
@KT-dj4iy
@KT-dj4iy Жыл бұрын
I have experienced that same epiphany about the importance and, yes, beauty of data structures. And not just in Programming and CompSci. My background is in Physics, EE, and Computing, but I now run a company and so on the surface I spend more time thinking about sales, finance & accounting, HR issues, and so on than I do about technical matters. But that's only the surface. In a deeper and more real sense, it truly is data structures all the way down. At the risk of being too grandiose and philosophical, I now see data structures as being so important and fundamental not just because they concern the way we organize the stuff we put in our computers; data structures are so important and fundamental because they concern the structure of thought itself.
@yaboy7120
@yaboy7120 6 ай бұрын
damn u sold me
@abroniewski
@abroniewski 2 жыл бұрын
Just came across your video. This is gold. I had an idea of data structures, but having you link it to memory in the computer and why it matters.... *chef's kiss*
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
glad my video helped!! Figuring out this link is what sort of made things 'click' for me too
@raykos4257
@raykos4257 11 ай бұрын
OMFG THIS IS ONE OF THE BEST DS&A VIDEOS ON THE INTERNET. Currently studying ds&a @ a top university and it's so frustrating how the profs never mention the WHY, they just dive into the HOW without any explanation or background.
@anthonygibson7218
@anthonygibson7218 2 жыл бұрын
Keep the videos coming man! You’ve got a great pulse on what I want to see
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
🔥🔥
@codecat8430
@codecat8430 2 жыл бұрын
This is the best explanation as to not just what are Data Structures, but the most important reason as "Why" they are needed and so important. I've never heard anyone talk about them this way. You have the best way of explaining things for someone like me. Just subscribed. Thank you!
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
I'm so glad to hear that you found this helpful! I noticed with many things that once I figure out the 'why', the 'how/what' become a lot more easier to understand as I can have the big picture/why this thing exists in mind. And I agree that I haven't seen anyone else make this kind of explanation on DSA so I wanted to make mine.
@codecat8430
@codecat8430 2 жыл бұрын
@@InternetMadeCoder Exactly! Thank you!
@shinthantkaung1925
@shinthantkaung1925 2 жыл бұрын
Thank you for creating this video. I believe that many people typically have a lot of problems attempting to understand DSA. Also it's quite important as for any Software Engineer.
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
yep exactly
@leow.2162
@leow.2162 Жыл бұрын
I have played around with python a bit and thinking about how you wanna organize data and writing reusable functions that work with that makes a lot of stuff a lot faster to code, and you need to fix a lot fewer bugs. It's like when you have containers on ships and all harbors are set up to load and unload containers of that size from ships. It just makes everything a lot smoother and faster (if you do a good job with your structures in the first place). This isn't as low level as the stuff in this video but it's similar, just more surface level
@animetexture7564
@animetexture7564 2 жыл бұрын
C, C++ is good way to learn data structures because you have to do all things manually it is good way to understand what is happening behind the scenes
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
true, at least you want to learn a low-level language eventually
@mastershonobi110
@mastershonobi110 2 жыл бұрын
I have completed a DSA purchased on Udemy; the best part of the course …animations were used to drive home the key point etc. getting this information from different perspective is very important as it allows for review, re-learning and retention, Basically, repetition. Thank You! ☺️🙌🏿🙏🏾
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
yes indeed!
@naazj8508
@naazj8508 2 жыл бұрын
Which course u opted..
@mastershonobi110
@mastershonobi110 2 жыл бұрын
@@naazj8508 “Data Structures and Algorithms- Java” By Scott Barrett! He really drives the points home and gets you in the habit of thinking about “edge cases!” Cheers.
@admirald.rifter1819
@admirald.rifter1819 Жыл бұрын
what course did you choose specifically?
@fk4866
@fk4866 Жыл бұрын
I actually bought the scott barett one a few says ago too! I heard the animations were great in the reviews so it's great you like it
@ashrav8466
@ashrav8466 2 жыл бұрын
Thank you Toumas so much for this video, it's great to know foundational topics like DS&A from someone who went through the same journey, to give me a clear vision of what one can face in later stages, please we need more videos like these, a series of an overview of what a self-taught programmer should know, also it'd be great if you could imitate problems like the ones you face at real work, to see how the things I'm learning are applied in real life.
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
Glad it was helpful! I plan to do a lot more content related to DSA as it also helps me solidify these concepts even more!
@alberth094
@alberth094 Жыл бұрын
I’m new to learning programming, and this made a lot of sense. Thank you.
@InternetMadeCoder
@InternetMadeCoder Жыл бұрын
Glad it was helpful!
@agilethoughts6619
@agilethoughts6619 2 жыл бұрын
You do a nice job of going over "what's in it for me." Love the 'no one wants to hire a developer who keeps their code like their messy room.' (Not a direct quote.)🙂
@mohammadhasankingoftennis4770
@mohammadhasankingoftennis4770 7 ай бұрын
I am 13 yrs old and I still understood the entire lecture!!! thx a lot.
@Rehqi
@Rehqi 2 жыл бұрын
We certainly appreciate your support on our software developer journeys!
@MurryTic
@MurryTic Жыл бұрын
Thanks for the vid. I've just started my master degree in computer science with no basic knowledge about programming and coding at all and couldn't understand much in the Algorithm class today, but I've learnt something fundamentally from this vid. You've made it easy to understand (and not to mention that you're quite easy on the eyes..LOL). Anyhow, may I ask what programming language you're using in the vid when you show the example of the codes?
@InternetMadeCoder
@InternetMadeCoder Жыл бұрын
No language, it’s pseudocode
@akshitmittal1251
@akshitmittal1251 9 ай бұрын
I just have few days to get into Fang and I have no idea about DSA as a whole. I was searching whole internet for a video explaining briefly about all data structures- array, lists, arraylists, linked list, stacks, queues, hash maps, trees. And when to use where just in brief, just for implementation purpose. But whole net was flooded with hours of vids for each DS. But yours man!!!! Its the one we all need, people like me. Thanks man. Can u make more of it covering all of those ds in brief pls. I use JAVa
@pfeffer_corp7877
@pfeffer_corp7877 Жыл бұрын
Thank you so much for this video. I am a second year data science student and I'm starting to get overwhelmed with studying the data structures, algorithms and computability module. Finding your video is helping me feel more calm about it.
@daysofgrace2934
@daysofgrace2934 Жыл бұрын
ideally you want the data to fit in the CPU cache, so you want to group data that you will carry computation together in a single data struture, student id, class year together so you can carry a simple instructions to increment their class year at the start of the academic year, you don’t need to fill the cpu cache with first name, middle name, dob, sex, address etc...
@BioInASec
@BioInASec Жыл бұрын
This was actually good and it can be even better if you would add more examples for each data structure there is.
@joeyv6604
@joeyv6604 6 ай бұрын
I started with a python course and fell down a rabbit hole and along the road came data structures amd algorithms, I cam see the beauty in it
@karvapatel2998
@karvapatel2998 2 жыл бұрын
Bro I had just completed my Java course and I decided that I'll start my DSA FROM TOMORROW and think what's you upload a video on DS this is very useful. You should have to make video on algorithms we'll like it and learn from it.
@andrews8733
@andrews8733 Жыл бұрын
The initial example with lists and registers is off. You've also used the term "memory register". Memory, and registers, are different things entirely. You don't store lists in registers. Unless your writing an OS or a compiler, you shouldn't have to worry registers. If you're working in a high level language, hopefully the lowest level you ever find yourself in is a "page"
@TheBdemba16
@TheBdemba16 11 ай бұрын
Honestly, Ive been coding for about 5 years in an organization with some very good and experienced developers. Ive looked at 50+ repos and have not found even 1 example of linked list being used in any of these apps.
@Pocketsocket
@Pocketsocket 4 ай бұрын
I watch this before learn Data structure in Next semester your give good way I understood from your video
@joshuahenry4695
@joshuahenry4695 2 жыл бұрын
Dude this video is awesome ! I am currently a third year Comp Sci undergrad taking my esteemed Data Structures & Algorithms class right now ! This is of great help ! thankyou🙏🏿
@Squash101
@Squash101 Жыл бұрын
This is an amazing refresher as well. Amazing video bro!
@chrisa1234
@chrisa1234 Жыл бұрын
I don't understand the advantage of linked lists. If they are efficient for storage in memory but inefficient for actually accessing that data, how are they any more efficient overall? At the end of the day, it's all about being able to retrieve the data we need in the fastest way possible, right?
@ujjawalchatterjee
@ujjawalchatterjee 2 жыл бұрын
This is a brilliant explanation 👏 you have made things so understandable with the visualization
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
Glad it was helpful!
@JohnAranita
@JohnAranita Жыл бұрын
Learning computer science @ Honolulu Community College around 1990, I really fell in love with Pascal's pointers.
@Raptor-jv7fi
@Raptor-jv7fi 11 ай бұрын
Thanks for explaining this stuff so clearly and why it is so important to learn it. I had a mental block going in to learn this stuff cause I never use it at work to the extent that they are going to have you do at interviews, you really sold it to me with your creative analogy of someone maintaining a messy room. Thank you very much again!
@originalsal2141
@originalsal2141 Жыл бұрын
Oh man this is such a good explanation and as soon as you said the word abstraction my brain had already gone out to thinking out hypothetical algorithms. I’m just getting back into coding since I’ve been busy with uni and mostly coded in the summers, but now that I’m trying to get back and conquer JavaScript this was a very eye opening video so thanks for that!!
@MuhweziIan
@MuhweziIan Жыл бұрын
You're a keeper of this realm keep going deep
@MrEllipsis423
@MrEllipsis423 10 ай бұрын
I just started coding some months ago and this made perfect sense to me!
@bohdanbaida
@bohdanbaida 10 ай бұрын
This is a very interesting way of explaining a data structure and memory storage. Thanks!
@kathleen_lalala
@kathleen_lalala 2 жыл бұрын
Great content as usual!!! Would love to see a video on algorithm!!
@arjunchabbi1307
@arjunchabbi1307 11 ай бұрын
Thank you so much!! It gives a general overview of how data structures work , definitely great for beginners
@zaanly
@zaanly 2 жыл бұрын
Best Explanation. I want more videos like this or may be a complete series on DSA. Real World Examples really make everything simple to understand :)
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
Glad you liked it!
@VidhathShetty
@VidhathShetty 2 жыл бұрын
Couldn't agree more man 🙏🙏
@75STARFISH
@75STARFISH 2 жыл бұрын
Just watched the first ten minutes of your video. I wish I was taught this way. I am going to steal your example and teach it in my lesson tomorrow thanks dude Data Structures made clear
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
Go for it!
@duoduo618
@duoduo618 2 жыл бұрын
Thank you for your video. It's really inspiring and encouraging for me as a self-taught developer learner now. It's really hard for me to hold on myself alone. But everytime I watch your video it makes me reenergized to learn again. Wish you all the best and respect
@blevenzon
@blevenzon 2 жыл бұрын
Brilliant. So glad found your channel
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
So glad!
@prostem4496
@prostem4496 Жыл бұрын
Thank you so much! It’s really easy to understand data structures following your thoughts
@DogSaveTheBreen
@DogSaveTheBreen Жыл бұрын
I’m new to coding but I have edited enough videos to say no weird zoom ins or cuts are necessary. There is enough well executed cuts in the video without the zooms
@mehki9060
@mehki9060 Жыл бұрын
Hey! New to the channel and definitely enjoying the content! Wondering if you could do more in-depth break downs on just some of the data structures such as ID= , Class= console.log etc
@Pollojr_
@Pollojr_ 24 күн бұрын
Finally someone who just said exactly what it is.
@agilethoughts6619
@agilethoughts6619 2 жыл бұрын
Nice work @internet made coder! You have a personable and calm style.
@Lights_Darks
@Lights_Darks 4 ай бұрын
thanks for the explanation on pointers and what its advantages are.
@TheRr1990
@TheRr1990 2 жыл бұрын
I really like the video. My take away from this is that "a lot of times certain DS are about the operations we want to do with the data".
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
Yess
@philipkumi2759
@philipkumi2759 2 жыл бұрын
wonderful, tutorial ....i also have a hard time understanding these concepts....this has really given me a great overview of what data structures is all about
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
thanks! great to hear it helped!
@theditto69
@theditto69 7 ай бұрын
Fantastic video! I learned a lot, and you actually didn’t have to use actually as much as you did, actually
@myentertainment55
@myentertainment55 Жыл бұрын
Correct me, but probably the only point of data structures and algorithms is make slow code faster. You don't have to understand all math behind it, but know how to use is more important. You can see that some data structures and algorithms will take 0.3 secods, some 8 hours (extreme example) But even 8s and 30s is enormous difference between different data structures- it doesn't matter for your small pet prject, but as soon there is a lot of data (like tens of thousands transactions a second) it will eat all your memory even if it's hundreds of gigabytes of RAM, or add some incapsulation and your script went from 5 minutes to execute to 2-3 or even 8 hours just because you don't know your data structures. My advice, don't go deep into it at the beginning, read very very basic definition, then search for many easy examples why people choose particular data structure and algorithm and you get it fast. When you start using, check math and theory later. Very basic understanding is not hard, start with it.
@MrMukulpandey
@MrMukulpandey 2 жыл бұрын
Why not to create a playlist of data structures, Your way of explanation is great.. playlists will gonna help so many of us.
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
I will do that! Next video is in preparation
@MrMukulpandey
@MrMukulpandey 2 жыл бұрын
@@InternetMadeCoder great❤
@onomemafuru9496
@onomemafuru9496 Жыл бұрын
You totally cleared this out for me, thank so so much 💓.
@tinycastledesigns7110
@tinycastledesigns7110 2 жыл бұрын
can't wait for the algorithms video
@arthurxie1655
@arthurxie1655 Жыл бұрын
a little pause between different concepts and information will be highly appreciated :)
@tdd.academy2573
@tdd.academy2573 2 жыл бұрын
Nice work Internet Made Coder! Or shall I say, Internet MAD Coder! 😜
@hvideulv2617
@hvideulv2617 Жыл бұрын
Thank you. This was very helpful.
@chrisdaykin3899
@chrisdaykin3899 Жыл бұрын
My first "data structure" was years ago, when I learned some C++ and created an application using linked lists, I remember trying to work out the pointers, using post it notes ; )
@chrisdaykin3899
@chrisdaykin3899 Жыл бұрын
Lol I wrote my post before watching the video
@handleReallyDafaq
@handleReallyDafaq 9 ай бұрын
I like how you explain things. Great job 👏 keep it up.
@yaswanthvallaturu6771
@yaswanthvallaturu6771 2 жыл бұрын
after watching your videos i can see the progress in my learning and im taking CS50, im literally struggling alot with the logic, if i tried 50 ways the solution will be in the 51 way, and the problem is im not able to think beyond that, im thinking alot to get the logic but im not able to get that, is it really i cant get the logic or is it lack of something else, can you please help me with this, your videos gave me a good thought and im feeling a bit confident when compared to before. even though if im struggling., it will be helpful for me alot if you reply.,
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
there will always be problems that you'll struggle with. All the time I too end up looking up the answer, spending some time to properly understand it, and move on. I think the best balance is to try for a good amount of time, but if you're stuck, just look up the answer and make sure you understand it. Then move on to the next. THis has worked for me.
@yaswanthvallaturu6771
@yaswanthvallaturu6771 2 жыл бұрын
@@InternetMadeCoder I'll follow that, and thankyou very much for replying
@judparn1018
@judparn1018 2 жыл бұрын
Very good. It is only now that I understood data structures. Now that all is clear, I have already given away all my books.
@JayMaverick
@JayMaverick Жыл бұрын
Kiitos! It's funny to hear someone say that about algorithms. For me it's the opposite - I'm trying to learn the language quickly so I can fluently start learning algorithms.
@Animeseries841
@Animeseries841 3 ай бұрын
I don't understand please..just started a computer science course.. is there a preliminary to help me understand this course
@riyadhossain1706
@riyadhossain1706 2 жыл бұрын
Thank you! Subscribed 👍
@spotrebaaa
@spotrebaaa Жыл бұрын
Thank you for explaining this thoroughly!
@2good2be4gotten100
@2good2be4gotten100 Жыл бұрын
i dont usually comment on videos, but i had to come here and say absolutely amazing
@germantoenglish898
@germantoenglish898 10 ай бұрын
Thank you for sharing this information. So end-user interfaces are abstractions of data structures and data structures are abstractions of machine code?
@ToyotaGT8614
@ToyotaGT8614 3 ай бұрын
this helped tysm
@VictorOrdu
@VictorOrdu 2 жыл бұрын
This is so well done. Thank you! Subscribed 👍
@mohamedadnan786
@mohamedadnan786 2 жыл бұрын
Hey can you please do a MAANG OR MANGA interview... And please tell us how actually tech giant companies conduct interviews and how to actually pass them!!!
@animetexture7564
@animetexture7564 2 жыл бұрын
There's is no Roadmap to pass an interview if you know your shit(no offence just mean programming )apply the resume attend the interview answer their questions or pass their coding test. That's all you need
@hoangnguyendinh1107
@hoangnguyendinh1107 Жыл бұрын
He does not work at those companies , i also doubt whether he has ever had Manga interview
@kangmoabel
@kangmoabel Жыл бұрын
Watching your videos from.Ethiopia ❤👏 i love your contents !❤
@heavymetalmixer91
@heavymetalmixer91 2 жыл бұрын
Given that data structures help to make data organized and efficient, do they help to optimize a game's code?
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
yes
@modoulaminceesay9211
@modoulaminceesay9211 2 жыл бұрын
You got my subscription happy to see tech KZbinrs from London
@reman3000
@reman3000 Жыл бұрын
thank you, programmer jeff nippard
@bl8672
@bl8672 2 жыл бұрын
You inspired me a lot to start coding, so i started the CS50 program , but I am struggling with some problems . Can someone help me ? Where can I find the answers of CS50?
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
google
@akosyt4540
@akosyt4540 Жыл бұрын
Thank you for the clear explanation
@csaratakij6339
@csaratakij6339 2 жыл бұрын
DSA feels intimidate when learning, but it get more frustrated when you face a problem that require certain data structure to even understand the problem you facing. So, don't skip learning Data Structure once you familar with programming language syntax.
@trusno7751
@trusno7751 Жыл бұрын
Sitting here scratching my head now watching this video, & trying to learn!😁
@skyrex7480
@skyrex7480 Жыл бұрын
The marker writing asmr is killing me ngl but great video already still watching it though!! :
@NganDang
@NganDang Жыл бұрын
this video is very helpful!!! thank you 😊😊
@InternetMadeCoder
@InternetMadeCoder Жыл бұрын
Glad it was helpful!
@ektiders
@ektiders Жыл бұрын
You are so underrated
@entropic7768
@entropic7768 2 жыл бұрын
thank you, i am understanding this much better now
@xavierdoesntmatter
@xavierdoesntmatter Жыл бұрын
I'm confused and have to do more research now. This just sounds like simply knowing how to make your models in python link properly to the data it needs and when. An individual stock doesn't need to know about the users that own it but the users need to know what stocks they have. But I don't really do anything about where it stores that info, it's all stored in a database.
@allenbro9900
@allenbro9900 8 ай бұрын
This is an incredible explanation
@carolinedesouza7570
@carolinedesouza7570 Жыл бұрын
I love your explanation!! Great video.
@MikeeBuildstech
@MikeeBuildstech Жыл бұрын
Great video! Very well explained!
@arhianalbis918
@arhianalbis918 Жыл бұрын
this guys channel is a linked list with each video pointing to another video, except the names of the videos are very deceiving which makes it very inefficient to find what youre looking for
@amrelaal30
@amrelaal30 2 жыл бұрын
Man!!! 🤠…. I really can’t take off this hat,, but we really respect & love what you do!!thanks mate 😍
@mikediaz9033
@mikediaz9033 Жыл бұрын
I definitely need help on oop and loops(lists, tuples, dictionary's, arrays) & function combos(algorithms). I would like to see real source code, so I may read it and understand the whole Source File.
@cameronline3780
@cameronline3780 10 ай бұрын
Hey dude! Don’t call yourself a dumba** be good to yourself you’re smarter than you think!
@MrMegafly2011
@MrMegafly2011 2 жыл бұрын
Really great insights about data structures thankyou well done
@valenciawalker6498
@valenciawalker6498 Жыл бұрын
Thank you ☺️ in school for SE At flat iron and taking #cs50. Thank you for breakdown.
@532hariharareddyg5
@532hariharareddyg5 2 жыл бұрын
Please make DSA series in python.
@InternetMadeCoder
@InternetMadeCoder 2 жыл бұрын
I am planning on this!
@MarkJaireeCabus
@MarkJaireeCabus Ай бұрын
Hello How to get access to full data structure and algorithm lessons? I will start understanding data first before I will write a code.. thank you
@CandaceDesignedStore
@CandaceDesignedStore Жыл бұрын
OMG!!! Lightbulb!! Fellow Dumb @ss here... I just could not grasp the concept until now!! Thank you so much for explaining it this way. Several courses, youtube videos and even a chat with ChatGPT and your explanation finally clicked!!! Again, thank you so much!! :) :)
@sean02345
@sean02345 Жыл бұрын
You explained this very well
@drjodyannjones
@drjodyannjones 10 ай бұрын
Very good video! thank you for sharing.
@otakusong66
@otakusong66 Жыл бұрын
You really good at explaining thank you
@bing4047
@bing4047 2 жыл бұрын
But Am Always Excited to learn data Structure 😐 It's most beautiful and important side to be A Good Programmer
Algorithms Explained for Beginners - How I Wish I Was Taught
17:38
Internet Made Coder
Рет қаралды 352 М.
She's very CREATIVE💡💦 #camping #survival #bushcraft #outdoors #lifehack
00:26
Good teacher wows kids with practical examples #shorts
00:32
I migliori trucchetti di Fabiosa
Рет қаралды 7 МЛН
Стойкость Фёдора поразила всех!
00:58
МИНУС БАЛЛ
Рет қаралды 5 МЛН
How Data Structures & Algorithms are Actually Used
11:39
ForrestKnight
Рет қаралды 204 М.
How to Solve ANY LeetCode Problem (Step-by-Step)
12:37
Codebagel
Рет қаралды 242 М.
Top 7 Data Structures for Interviews Explained SIMPLY
13:02
Codebagel
Рет қаралды 196 М.
How I would learn Leetcode if I could start over
18:03
NeetCodeIO
Рет қаралды 567 М.
These coding projects give you an unfair advantage
8:13
Jason Goodison
Рет қаралды 1 МЛН
How I Mastered Data Structures and Algorithms
10:45
Ashish Pratap Singh
Рет қаралды 194 М.
LeetCode was HARD until I Learned these 15 Patterns
13:00
Ashish Pratap Singh
Рет қаралды 399 М.
What REALLY is Data Science? Told by a Data Scientist
11:09
Joma Tech
Рет қаралды 3,8 МЛН