Тёмный

Introduction to Linked Lists, Arrays vs Linked Lists, Advantages/Disadvantages - C++ Data Structures 

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

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

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 465   
@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.
@IAkar
@IAkar 2 года назад
Could you make a Vector Video? By the way i like you soooooo much :)))))))))
@HollowGuy0
@HollowGuy0 2 года назад
I struggle with my professor's way of explaining this. You did it in just 24 mins. Thank you.
@CodeBeauty
@CodeBeauty 2 года назад
Happy to hear that ☺️🤗🥰
@vedkorla300
@vedkorla300 3 года назад
Thank you so much, I didn't have much knowledge about pointers to begin with, yet your explanation was so nice that I didn't need to revisit it at all.
@CodeBeauty
@CodeBeauty 3 года назад
☺️🤗🥰
@Dronebotworkshop
@Dronebotworkshop 3 года назад
I recently discovered your channel and I just have to say that you are doing an amazing job with these videos. You have a great teaching style and I love the way you use practical examples to illustrate concepts. I use C++ when working with microcontrollers like the Arduino, and while there are a few syntax differences it is very similar, so your videos have been a great resource. I know you get many requests for other languages as well, and as a RU-vidr myself I understand that it's impossible to entertain them all. If I were to make a request I would love to see you do a series on Python after you conclude the C++ tutorial series. So you can add that to the list! I wish you every success with your RU-vid channel.
@CodeBeauty
@CodeBeauty 3 года назад
Thank you so much for that comment! I really put a lot of work into these videos, especially to overcome the foreign language obstacle, so I appreciate very much the support that I get. I have a lot of TODO videos, and I also have to be honest and say that Pythons is not my strongest language. I was planning to focus on C++, C#, and JS mostly because those are the languages that I use the most, but I don't have any fixed plan for the future. Are you interested in those maybe? I wish you the best of luck with Arduino programming and a lot of success with your channel as well. 🤞🧡🧡
@Dronebotworkshop
@Dronebotworkshop 3 года назад
@@CodeBeauty Well I would say that you have definitely overcome the foreign language obstacle, your English is excellent. I certainly will be interested in seeing more of your C++ videos and look forward to the JavaScript ones, I have familiarity with both languages but it has been a few years since I used JS, so I'm sure I'll learn something. Keep up the great work Saldina, I predict that you'll soon have a RU-vid Silver Play Button to hang on your wall!
@DaleDix
@DaleDix 3 года назад
Mr DroneBot in the house!
@yohansenurga4044
@yohansenurga4044 3 года назад
@@CodeBeauty Guess what your English is more understandable than (no offense) other programming RU-vidrs. I really appreciate your effort and we will continue supporting you.
@nunorodrigues5628
@nunorodrigues5628 3 года назад
@@CodeBeauty this is the best best crossover of 2021!
@Tylasian
@Tylasian 3 года назад
Learned more in 24 mins than my professor in 2 hours. Thank you!
@JonathanReyes-nb8ws
@JonathanReyes-nb8ws Год назад
Same
@adamburri1088
@adamburri1088 11 месяцев назад
I wholeheartedly agree, I'm taking data structures and algorithms this semester, and what the prof took to explain in a week, 23 mins got me more!
@careenwasonga
@careenwasonga 10 месяцев назад
@@adamburri1088same lol
@reflex9238
@reflex9238 9 месяцев назад
By far the best video I've seen on link lists and the implementation of them in C++. Oh my god so many videos go into understanding what they are, but never teach what an implementation of them look like especially the syntax when being introduced to new syntax like -> which I wasn't aware of, or how you need to link your link list otherwise it's no longer a link list. This is a lifesaver and doesn't start with some syntax that no one has ever seen before and keeps it basic. If you go into anything a bit weird its explained. Thank you so much for the video it was super helpful in understanding what implementation of a link list looks like in C++.
@SalmanKhan-wk3pk
@SalmanKhan-wk3pk 3 года назад
You're the only one that finally made this understandable to me. Thank you so much plz continue this series !! I would like to see the series upgrade to the intermediate level. Thank you again, Saldina!
@circuitwave
@circuitwave 2 года назад
I agree! This was sooo helpful! Thank you very much!
@dextersilva4411
@dextersilva4411 Год назад
same TT
@potatoitis3326
@potatoitis3326 2 года назад
Thank you so much!!!!! This video was so helpful in helping me study for finals as well as understanding my data structures class. You made this concept so much easier to understand than my professor.
@Alphabet_-_
@Alphabet_-_ 3 года назад
#include using namespace std; class Node { public: int Value; Node* Next; }; void printlist(Node*n) { while (n!=NULL) { cout Value Value = 1; head->Next =second; second->Value = 2; second->Next = third; third->Value = 3; third->Next = NULL; printlist(head); system("pause>0"); }
@CodeBeauty
@CodeBeauty 3 года назад
Thank you for this! 🙏💙
@BlakeTedKord
@BlakeTedKord 3 года назад
@@CodeBeauty is that really google? What’s your ethnicity? Can you start a full stack series soon?
@trinity2725
@trinity2725 3 года назад
@@BlakeTedKord she is croatian
@ambroseoz6877
@ambroseoz6877 3 года назад
@CodeBeauty i have tired adding a four elements to it (third->Next = four; four-> Next = 4; then what happens to the " Null" at this point.
@ambroseoz6877
@ambroseoz6877 3 года назад
// Example program #include using namespace std; class Node { public: int Value; Node* Next; }; void printlist(Node*n) { while (n!=NULL) { cout Value Value = 1; head->Next =second; second->Value = 2; second->Next = third; third->Value = 3; third->Next = four; four->Value = 4; four->Next = NULL; // i want to know the issue at this line of this code printlist(head); }
@soniusMu
@soniusMu 9 месяцев назад
I am a college student who is watching in Korea There is no such high quality C++ video in Korea Thank you for the good video!!
@DINO5551000
@DINO5551000 2 года назад
Maybe it is not such a good idea to directly overwrite whatever pointer we pass onto that printList function. After the function is complete, whatever pointer we passed to it as argument will now be NULL, so head will be NULL which means we more or less just discarded our whole linked list, correct me if I'm wrong please.
@sebastianionel5134
@sebastianionel5134 3 года назад
If people don't want to use public variables in a class (not pretty cool to use public variables in classes and not so great to practice) they can check this code right here. I did some OOP things: class Nod { // Nod = Node in my language int valoare; // valoare = value in my language Nod* next; public: // I did a constructor also to avoid making a very big column of initializations. If I don't pass the next Node, then the default value is a nullptr; Nod(int valoare, Nod *next = nullptr) : valoare(valoare), next(next) {} // Here are some getters and setters that can access the private variables. void setValoare(int valoare) { Nod::valoare = valoare; } void setNext(Nod *next) { Nod::next = next; } int getValoare() const { return valoare; } Nod *getNext() const { return next; } }; void printList(Nod* n) { while(n){ std::coutgetValoare() getNext(); // This is a pointer so that's why you can do this. } } int main() { // linked list example with 4 elements: Nod* head = new Nod(1); Nod* second = new Nod(2); Nod* third = new Nod(3); Nod* last = new Nod(4); // here I was pretty lazy to implement the pointer in constructor thing (the stuff you need to pass as a parameter to the construct to point to the next node) so I did this: head->setNext(second); second->setNext(third); third->setNext(last); printList(head); // std::cout
@mohammedalharbi158
@mohammedalharbi158 2 года назад
You are a LIFE SAVER thank you from the deep of my heart.
@UsmanKhan-mw4ye
@UsmanKhan-mw4ye Месяц назад
What a brilliant explanation
@grandparick3176
@grandparick3176 3 года назад
I really love the way you explain things.
@anthonymartinez5692
@anthonymartinez5692 Год назад
Excellent video. To avoid a memory leak, should we delete the each Node pointer variable at the end of the program?
@basiat.3838
@basiat.3838 Год назад
wanted to write the same 🙂
@leonidas14775
@leonidas14775 Год назад
Fot that printList function, some kind of while loop seemed like the obvious solution. But I also got it working with an if statement and recursion. Making a function call itself just feels cool to me.
@betulkaraca8656
@betulkaraca8656 10 месяцев назад
You are the BEST
@bhargavsolanki6386
@bhargavsolanki6386 3 года назад
Awesome ma'am, lots of love from India😍
@CodeBeauty
@CodeBeauty 3 года назад
Thank you! Lots of love for 🇮🇳🧡🤍💚
@thecloudguy44
@thecloudguy44 2 года назад
Very good explanation of code...explain with the help of diagrams could have made it better
@satwik8723
@satwik8723 3 года назад
mam plz upload circular and doubly linked list also please please please
@manoharsagunthalla9215
@manoharsagunthalla9215 2 года назад
Dear Saldana will you please explain if the class has more attributes, in separate video
@abdel-rahmansayed6384
@abdel-rahmansayed6384 3 года назад
I really appreciate your work, you helped me understands this particular topic which was both easy and confusing at the same time. Keep it up💪🏻
@Neiltxu
@Neiltxu 2 года назад
your videos are insane, you made me feel that c++ wasn´t as difficult as it was being for me at university, thanks a lot and best wishes from Spain.
@milkamilkica1935
@milkamilkica1935 3 года назад
Love how you explain everything so simple and easy!
@CodeBeauty
@CodeBeauty 3 года назад
Happy to hear that you learn from videos! 🤞🤗🧡
@dvega920
@dvega920 3 года назад
@@CodeBeauty I second Milka's comment! I've spent a ridiculous amount of time (hours) reading and rereading my text book to understand linked lists and you very eloquently showed me in a matter of minutes. Thank you and keep up the great work! I will be following you for more C++ videos as this has been a trouble language for me to pick up. Best of Luck!
@artisticnights6222
@artisticnights6222 3 года назад
You are a life saver I have taken data structures three times and never understood it especially linked lists and you made it so simple THANK YOU T--T
@abdelfattahelfahim2630
@abdelfattahelfahim2630 3 года назад
Please we are need learn HTML and CSS can you help us for what?
@CodeBeauty
@CodeBeauty 3 года назад
I already have a few tutorials related to HTML and CSS. You can check them out on the playlists on my channel. 🤞🤞🤗
@abdelfattahelfahim2630
@abdelfattahelfahim2630 3 года назад
@@CodeBeauty ok thanks
@namansharma7328
@namansharma7328 3 года назад
🌻💢🛡️♦️Head, first and second are pointers or the name of the node???
@eminbaybarstimurstudent3802
@eminbaybarstimurstudent3802 3 года назад
void printList(Node *head) { if (head->Next != nullptr) { cout Value Next); } else { cout Value
@krishaelle8309
@krishaelle8309 2 года назад
please put up more videos on data structures and algorithms in c++
@MushroomGravy
@MushroomGravy 3 года назад
I caught the beginning but was distracted through the middle. I caught the question, my answer was "It needs the Head. It requires a basis, a point of reference from which to start". I start my degree next week, and even though I have no previous experience, when you said the answer was the same as mine I cannot express the joy I felt. Thanks so much for taking the time to make videos like this. It may seem like "revision" to someone familiar, but to someone like me (and your recommendations on learning Java at the start), I don't know it's hard to explain. But you're so damn attractive I can't concentrate lol and it's mostly why I was walking around listening half the time. I can never look at Batman the same way again. However, I'm sure I'll manage :) In all serious, you're wonderful. You and many others like you ( e.g. freecodecamp) have really opened my eyes to a wonderful new world for me to explore. I'm so excited! Please, don't stop. Any of you.
@hassannawaz661
@hassannawaz661 3 года назад
This is one of the rarest things that brings closer Indians and Pakistanis 😂 Thanks beauty!
@CodeBeauty
@CodeBeauty 3 года назад
I am so happy to see different ethnicities, nations, genders, religions... on my channel. 🙏💙 I grew up in a multicultural environment and I can say that it made me more tolerant, and open, and it gave me a wider world view!! 🌐🤗
@dylanpeng5608
@dylanpeng5608 4 часа назад
In my opinion,if i want to use a function to cout the value in the linklist,we need to receive the head link pointer,maybe.
@timetofilmit5441
@timetofilmit5441 3 года назад
Clear and concise. Thank you for your help!
@learntoearn6612
@learntoearn6612 2 года назад
video posted on 24/Feb/2021, Today 8/Dec/2021 still helpful and will continues being helpful. *Thanks Saldina*
@Nikhil-vo4qu
@Nikhil-vo4qu Год назад
Thank you so much di ! this helped me a lot !!! May the force be with you !
@YaraYasser-xv3kr
@YaraYasser-xv3kr Год назад
In the main Function, Why we used new to create pointers, is it because standard pointers will not work?
@garcj1499
@garcj1499 3 года назад
I decided to watch the entire video at 1am for fun instead of going to sleep. Linked lists have never been this clear to me until now, thanks to you!
@stephanieezat-panah7750
@stephanieezat-panah7750 2 года назад
haha! great. 1am is good to learn. kudos to you
@pandax_185
@pandax_185 3 года назад
Definitely one of the best channels ever seen ❤️
@aakashgupta1485
@aakashgupta1485 3 года назад
Can I know which version of C++ is used in these videos? C++ 14 , C++ 17 or C++ 20?? And which compiler is used?
@2minhacks
@2minhacks 2 года назад
Thank You This video helped me in understanding concept of the linked lists, I have watched many videos but this video makes everything clear.
@theengineer1017
@theengineer1017 3 года назад
very informative video , but i had trouble understanding why you declared the node class objects as pointers, you could have made normal objects and it will still be a linked list because there is always a Next pointer inside the node class
@AlexAlex-em6ct
@AlexAlex-em6ct 3 года назад
There is some memory leak! You created three nods in heap . One more things in C++ you must to use nullptr instead of NULL ... :)
@salmale3783
@salmale3783 3 года назад
women are very caring and have a very good way of explaining things ♥️♥️I'm proud of you
@CodeBeauty
@CodeBeauty 3 года назад
Thank you so much for this genuine comment! ❤❤❤
@nitinnishad4810
@nitinnishad4810 3 года назад
main() { int size,n; coutsize; n=size; int arr[n]; cout
@klevialushi571
@klevialushi571 3 года назад
Thanks for the video!
@singhcodes7733
@singhcodes7733 3 года назад
Love your content mam 🧡🌸 Love from India 🏅
@CodeBeauty
@CodeBeauty 3 года назад
I love the support! 🙏 Hugs for India! 🧡🤍💚
@vangezto
@vangezto 2 года назад
Whats the difference between new node(); and new node without () ?
@mfaiz6
@mfaiz6 3 года назад
Hi Saldina... I am not able to find casting operator video. I am following your 10 hour C++ tutorial, but in Switch Case statement part 1 (03:01:00), you said you already made a video on casting operator. But that video is not a part of 10 hour tutorial. Please help.
@Yurihjjjn
@Yurihjjjn 3 года назад
This is great!!! Lots of love from Pakistan 🇵🇰❤️
@naziabutt8142
@naziabutt8142 Год назад
beautifully explained .you just made it sooooo simple to understand.thank you.....
@praveenkarmakar6218
@praveenkarmakar6218 2 года назад
#include using namespace std; class node{ public: int num; node *next; }; void printlist(node *t) { while(t!=NULL) { coutnext=first; first->num=20; first->next=second; second->num=30; second->next=NULL; printlist(head); }
@zombiehellmonkeygaming1956
@zombiehellmonkeygaming1956 3 года назад
Wow, thank you for the brilliant explanation! You make everything sound so simple. I have only ever used std::list, so to understand how linked lists actually work under the bonnet really helps.
@CodeBeauty
@CodeBeauty 3 года назад
I'm happy that you find my explanation helpful and that you understand how LL work inside 🤞🤗🤗
@tanhnguyen2025
@tanhnguyen2025 10 месяцев назад
truthfully speaking, you're dropdead gorgeous from my point of view. Thank you madam for dedicating your time to making this video that is perfect to the most minute detail!
@Justanoobcoder
@Justanoobcoder 3 года назад
why don't you use struct instead of class? I think class is not necessary for linked list or is it?
@joehibbler7120
@joehibbler7120 2 года назад
My last year until I graduate BS computer Science ... Thank you so much your lessons are great.
@ThienNguyen-od2hb
@ThienNguyen-od2hb 3 года назад
Could you please do a video explain how to do a reserve linked list?
@joegongamer8637
@joegongamer8637 3 года назад
Anyone knows why @21:08, we can't use n->next != NULL in the while loop?
@chyquithadp4804
@chyquithadp4804 3 года назад
thank you so much
@cranixstein6207
@cranixstein6207 2 года назад
Thank you very very much Saldina, your videos on C++ are so precious and understandable.
@CodeBeauty
@CodeBeauty 2 года назад
😊🥰
@Bess_Gates
@Bess_Gates Год назад
I really appreciate what you do, thank you
@LowescC
@LowescC 2 года назад
many thanks..
@misganawmekashaw5113
@misganawmekashaw5113 3 года назад
i will need more video on data structure and algorithm
@mattasatishkumar4132
@mattasatishkumar4132 3 года назад
your beauty made me to view code beauty!!!!!!! love from india(hyderabad)!!!
@zannatulferdousbristy235
@zannatulferdousbristy235 2 года назад
Yes, I got now easy explanation . Thanks and upload more.
@raahimfareed
@raahimfareed 3 года назад
Since our node has all public data members, can we just use a struct instead of the class?
@ANOSH-TECH
@ANOSH-TECH 9 месяцев назад
thank you
@AdityaSingh-ui4tr
@AdityaSingh-ui4tr 3 года назад
why forward_list doesn't support size()?
@rayanalasow7035
@rayanalasow7035 Год назад
Loveeeeee the explaination. I feel like you do a good job in explaining the things that sometimes are pushed under the rug and that is sometimes the difference between feeling completely stuck vs finally understanding an otherwise simple concept.
@painsme2
@painsme2 3 года назад
These are really informative video's. I appreciate you taken the time to do so. Thank You and Cheers!
@bubble_gum_witch
@bubble_gum_witch 4 месяца назад
Thank you so much, your way of explaining is so clear and understandable. I really needed this video!!
@CodeBeauty
@CodeBeauty 4 месяца назад
You're welcome 🤗🥰
@Vscap33
@Vscap33 3 года назад
is there a reason why you use public class instead of struct?
@namansharma7328
@namansharma7328 3 года назад
What is the meaning of new node in " node* head= new node( ); " ?
@joegongamer8637
@joegongamer8637 3 года назад
I think it's a way to create a new node just like how you would create a new object. It's like creating an object called dog from an Animal class(Animal dog = new Animal("woof")). Since she didn't make a node constructor that takes in private variables, the "new node();" does not need any arguments in the parenthesis. In short, "new node();" is a way to create a new node in the Linked List. I assume you're more familiar with creating classes in a format like "Class A();" instead of "Class A = new Class();". This does bring a good question as I don't know what would happen if you take out "new node();" (I'm less familiar with Linked Lists, so I'm just saying what I know).
@namansharma7328
@namansharma7328 3 года назад
@@joegongamer8637 Thanks 👍🏼👍🏼 I wanted to ask one more thing..why we use * before head....as head is a node n???
@joegongamer8637
@joegongamer8637 3 года назад
@@namansharma7328 You're welcome. I'm not that experienced in LinkedList but starting from a simple standpoint when you create pointers, you always have to put the * before the variable name but after the data type. That helps the program know that the variable is a pointer. Unlike pointers, to create an array, you have to put the [] after the variable name but before the =. In the case of using a pointer for a node, I think conceptually, it's for the head to point to the next node of the LinkedList. This is a way to traverse through the LinkedList because without using pointers, you won't be able to access the data of the next node or any node. I have yet to actually create my own LinkedList *and* have a full understanding of it.
@MeetPatel-ps1hh
@MeetPatel-ps1hh 2 года назад
Little tip, use delete head; at end to free up the allocated memory:)
@ArslanBajwaOfficial
@ArslanBajwaOfficial Год назад
Your teaching style is very good the best teacher ever..❣
@Codebreaker0702
@Codebreaker0702 3 года назад
Is node a data type........ I'm confused.... because u use it before a pointer
@CodeBeauty
@CodeBeauty 3 года назад
Yep, a node is user-defined data type 😃😃
@Codebreaker0702
@Codebreaker0702 3 года назад
@@CodeBeauty one more thing mam..... How to print the value of any particular element (not all elements/node values) of a linked list .
@cloudyclouds5737
@cloudyclouds5737 6 месяцев назад
Thank you so much 💗😊 It really helped me
@basemhiwari3373
@basemhiwari3373 3 года назад
Hope you make videos about parallel arrays .
@MartinGG996
@MartinGG996 3 года назад
I was having doubts with this very topic. Nice video!
@CodeBeauty
@CodeBeauty 3 года назад
😊🧡
@sphamandlambuyazi5085
@sphamandlambuyazi5085 2 года назад
This is cool stuff we really thank you for your help peace
@suleymankocamaz3743
@suleymankocamaz3743 3 года назад
can you please make more video about data structure such as binary tress cuz it is quite useful
@mubiratan
@mubiratan 2 года назад
You are very didactic, congratulations!!
@codingcinemax
@codingcinemax 3 года назад
Need basic and Advance data structures using C++ 😇
@CodeBeauty
@CodeBeauty 3 года назад
Working on it... 🤞🤗🤗
@brandedmunda6281
@brandedmunda6281 3 года назад
Create projects using c++ like games
@ttobg
@ttobg Год назад
would there be a need to free the allocated memory?
@محمداليريمي-س6ص
@محمداليريمي-س6ص 3 месяца назад
This leson is very usefull thanks very muthc
@snakecodes
@snakecodes 3 года назад
Please make videos of HARD BOOTSTRAP because it is really very hard it is a REQUEST
@cryptobaduymus
@cryptobaduymus Год назад
I was really tired all unnecessary fency computer science terminological words this video keeps really simple so easy to understand thank you Code Beauty.
@rabbitazteca23
@rabbitazteca23 3 года назад
please make a linked list playlist that explores everything about linked lists like insertion in middle, anywhere, back, front,, double linked lists, applications of double linked lists, cyclic linked lists, application of cyclic linked lists, answering coding questions related to linked lists, etc... My prof said that linked lists are the most common form of interview questions when it comes to applying to jobs that are related to programming.
@kaivalyakumar8249
@kaivalyakumar8249 2 года назад
Thnx, you are great in explaining things....
@kunalakhade5660
@kunalakhade5660 3 года назад
I watched other random videos of linked list before I came to this video but my all doubts got solved here only . Just Thank you❤️ Lots of respect🌟 Can you please make a complete dsa playlist?? Plzzz🙏❤️
@adamadam7856
@adamadam7856 2 года назад
Thank you, fantastic explanation.
@thedungnguyen4440
@thedungnguyen4440 3 года назад
i feel like im in love with y Saldina, you make things in coding seem more intuitively. big thanks from VietNam, i will introduce this channel to all of my friend who are trying to learn c++ for sure. However, Could you make more video relate to doing some particular project. Wish you all the best with this channel as well as your personal life.
@tsalVlog
@tsalVlog 3 года назад
as a long-ago C/C++ dev (c. 1998) and a current Kotlin Java dev, this is relevant to my work and interests!
@GenjaOrigins
@GenjaOrigins 3 года назад
Why do we say that the head->Next points to second if we dont say head->Next = &second
@CodeBeauty
@CodeBeauty 3 года назад
Because second is already a pointer and Next is pointer as well. &second would be the address of the pointer and in order to store that you'd need pointer to a pointer. You can watch this video and the idea of ** (pointer to a pointer) should be easier to understand. 🤗🤗 ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-mGl9LO-je3o.html
@rein29233
@rein29233 2 года назад
Finally understood after going through many videos. Thank you
@simonsmith4706
@simonsmith4706 3 года назад
Answer: You need to give over the head because the head points to the next (second) etc..
@akashkaturishorts1163
@akashkaturishorts1163 3 года назад
CodeBeauty saves my day.. everyday..
@CodeBeauty
@CodeBeauty 3 года назад
🤭☺️❤️
@Lol-jw5qd
@Lol-jw5qd 3 года назад
Can you please make a video about header files and scores files and cpp files using classes structure, love your videos
@Rene-xn8np
@Rene-xn8np 3 года назад
Besy best best best, it is so easy I thought its a mess
@mrlectus
@mrlectus 3 года назад
There is a memory leak in this code.
@antonmakeyenko4018
@antonmakeyenko4018 3 года назад
Who cares, we have 16Gb of RAM
Далее
Learn Linked Lists in 13 minutes 🔗
13:24
Просмотров 307 тыс.
Naming Things in Code
7:25
Просмотров 2,1 млн
2. Data Structures and Dynamic Arrays
50:18
Просмотров 524 тыс.