Dynamic Arrays in C++ (std::vector)

Поділитися
Вставка
  • Опубліковано 5 лип 2024
  • Patreon ► / thecherno
    Twitter ► / thecherno
    Instagram ► / thecherno
    Discord ► thecherno.com/discord
    Series Playlist ► thecherno.com/cpp
    Why is it called "vector"? ► stackoverflow.com/questions/5...
    EASTL ► github.com/electronicarts/EASTL
    Thank you to the following Patreon supporters:
    - Samuel Egger
    - Dominic Pace
    Gear I use:
    -----------------
    BEST laptop for programming! ► geni.us/pakTES
    My FAVOURITE keyboard for programming! ► geni.us/zNhB
    FAVOURITE monitors for programming! ► geni.us/Ig6KBq
    MAIN Camera ► geni.us/t6xyDRO
    MAIN Lens ► geni.us/xGoDWT
    Second Camera ► geni.us/CYUQ
    Microphone ► geni.us/wqO6g7K

КОМЕНТАРІ • 267

  • @fayzankowshik3625
    @fayzankowshik3625 3 роки тому +86

    I love how you treat C++ like an actual language you'd speak in

  • @BombeNissen
    @BombeNissen 6 років тому +21

    Great set of videos!
    I study computer engineering, and work with C++ for nearly all assignments. When there's issues with the code, I've been using these videos to get a deeper understanding on how a certain topic works, and it's been a huge help. Keep it up!

  • @nighma
    @nighma 6 років тому +151

    It will be so cool to compare one of the STL container (as an example) with one rewritten in the EA library and see the differences ;)

    • @arhantbararia380
      @arhantbararia380 4 роки тому +110

      it will be 35$ extra for that DLC

    • @Blonder_Studio
      @Blonder_Studio 2 роки тому +3

      better not to, BF2042 is one reason for that, game so broken that Engine so broken as well and plus extra charge for DLC, so good that Cherno left EA

    • @lightknight876
      @lightknight876 2 роки тому +2

      @@Blonder_Studio he's too good, passionate and professional for them.

  • @bratanvonehre3559
    @bratanvonehre3559 4 роки тому +19

    Brilliant channel man! Right now I have to implement an algorithm in an efficient way in C++ for my studies, your videos are an incredible help!

  • @abdulcool1268
    @abdulcool1268 6 років тому +7

    your videos are truly amazing. I wasn't able to catch up at first but now i really enjoy it and i am getting to understand more and more about c++ everyday

  •  Рік тому +2

    Fantastic channel! So great to get things explained by someone who actually knows what goes on behind the scenes, and who does not make absolutely everything into an programming analogy with food and animals.
    10/10

  • @tanguyletessier
    @tanguyletessier 2 роки тому

    Thank you! One of the best YT channels to explain simply difficult (at first glance) problems and especially put them into practice

  • @davidcarwile9205
    @davidcarwile9205 2 роки тому +7

    Seriously, you are better than my instructors at explaining everything. You are better at explaining than the damn books. These trimmed down and non bloated explanations are so much better than what I have been going through.

  • @ytacctaccnt
    @ytacctaccnt 6 років тому +208

    Go boy, go! You're my inspiration for learning C++. Your videos and your charisma and attitude!

    • @sizlax
      @sizlax 6 років тому +12

      I double this. He's not like most of the other people that teach this stuff on youtube. Listening to most people is like listening to text to speech or Ben stein and watching pain dry at the same time. This guy will make my life if he avoids using the word GOOEY and says G U I like a normal human being.

    • @sizlax
      @sizlax 5 років тому

      @@MrSerozka Sure, they make up something that sounds retarded and takes more to spell than the original spelling for... reasons! Fuckin millennials..

    • @mrbrian826
      @mrbrian826 2 роки тому

      I wonder after 4 years if you ever did learn c++.

    • @ytacctaccnt
      @ytacctaccnt 2 роки тому +2

      @@mrbrian826 Yes, but I still don't use it as my primary language, practically for anything... I'm into C# at the moment

    • @mrbrian826
      @mrbrian826 2 роки тому

      @@ytacctaccnt nice

  • @matthewortiz7859
    @matthewortiz7859 5 років тому +22

    I learned more watching this than a week taking my CSII course! Keep it up

  • @JoeyMcCart
    @JoeyMcCart 5 років тому +18

    Man i'm so glad I found your channel, you're saving me rn

  • @keidon6841
    @keidon6841 2 роки тому +1

    So much usefull information,u do not just give general understanding of a topic but provide the logic of its work
    i am glad i found your channel

  • @yl2415
    @yl2415 2 роки тому +1

    Up to this point it's not that I don't know all these, it's just I want to see how you program, because you have way better programming style than I did. Thanks Cherno!

  • @rcookie5128
    @rcookie5128 6 років тому +6

    Great stuff! The name confused me too when I first learned about std::vector..

  • @clodgozon3968
    @clodgozon3968 4 роки тому +11

    11:34
    Roughly speaking, abstract thinking develops over the years as a programmer which is a good trait so one doesn't have to stay longer into details like this.

  • @flippygat3
    @flippygat3 3 роки тому +14

    Amazing channel, just found it. :) Also the first tutorial channel I have ever found that I do not listen to at 1.5X speed.

    • @ldmdesign5610
      @ldmdesign5610 2 роки тому

      i need to slow it down sometimes i think lol

  • @MichaelYoussry
    @MichaelYoussry 6 років тому

    Thanks for putting so much effort into these videos.

  • @shadyganem5448
    @shadyganem5448 4 роки тому +1

    Great video.
    I learn so much from this guy. real talent.
    I would like to learn more about the best practices of memory allocation.

  • @sanjayreddy3295
    @sanjayreddy3295 3 роки тому +20

    It's called a vector because Alex Stepanov, the designer of the Standard Template Library, was looking for a name to distinguish it from built-in arrays. He admits now that he made a mistake, because mathematics already uses the term 'vector' for a fixed-length sequence of numbers. C++11 compounds this mistake by introducing a class 'array' that behaves similarly to a mathematical vector.
    Alex's lesson: be very careful every time you name something.

    • @christianlabanca5377
      @christianlabanca5377 Рік тому +3

      So now we have a class named Vector that behaves kinda like an array and a class named array that behaves kinda like a vector...
      Indeed, be careful when naming something

  • @maryameskandari7510
    @maryameskandari7510 5 років тому +8

    I learned a lot , thanks
    pls keep it up and make some video about graph representation and boost library

  • @work9167
    @work9167 2 роки тому

    This is amazing, man. I like your videos so much

  • @ashleycalhoun1824
    @ashleycalhoun1824 6 років тому +14

    Probably my favorite programming channel, Not only are his videos exciting, his style is so much cleaner. Best channel on youtube!

    • @jannesopanen8032
      @jannesopanen8032 3 роки тому +1

      Yea he tends to dig a bit deeper than others :)

    • @ashleycalhoun1824
      @ashleycalhoun1824 3 роки тому +1

      @@jannesopanen8032 here you are replying to a comment from a couple years ago, and I've already forgotten all I knew about programming.

  • @archimedeis
    @archimedeis 2 роки тому

    Wow that was pretty well done. I think I got enough to try out my own sort of mini project.

  • @SkySentry7
    @SkySentry7 2 роки тому +1

    Thank you SO SO SO MUCH BROOO! You don't know how you've just helped me... I understood every single thing you just said.😱👍👍👍

  • @Xgamesvidoes
    @Xgamesvidoes 4 роки тому +2

    Yepp...
    I was also confused with going from Unity C# vectors...
    To the C++ version of vectors! XD
    Nice video!

  • @stevefox7418
    @stevefox7418 4 роки тому

    Very nicely explained and very informative!

  • @younismalik8809
    @younismalik8809 Рік тому

    Thanks The Cherno! Great explanation as always! 👍

  • @vaddimurthyram3364
    @vaddimurthyram3364 3 роки тому

    Thanks a lot......clearly explained basics about vector(Dynamic Array or Array List)👏👏👏

  • @erwinschrodinger2320
    @erwinschrodinger2320 3 роки тому +1

    Great video as always!

  • @blackfun4448
    @blackfun4448 3 роки тому

    you are amazing at teaching, keep it up!

  • @agentandy159
    @agentandy159 3 роки тому +1

    11:30 Thanks for addressing this finally... Coming from C# I saw the method signatures in C++ and thought "are humans supposed to be able to read this"

  • @hassantariq4731
    @hassantariq4731 4 роки тому

    Thank You For Saving My Semester :)

  • @genelee2050
    @genelee2050 5 років тому +7

    it happened again. Near the end of the video, I thought someone else was playing music somewhere until i realized the source coming from this video...

  • @cowboybebop521
    @cowboybebop521 3 роки тому

    very nice little class learned so much cheers!

  • @dmitrijjafisov1912
    @dmitrijjafisov1912 6 років тому +1

    Quality content! Thumbs up!

  • @manuellabor2759
    @manuellabor2759 5 років тому

    Subscribed! Looking forward to going over your videos on C++👍👍👍👍👍

  • @ahmedanwar976
    @ahmedanwar976 5 років тому +3

    at 9:48 if anyone doesn't understand how he initialized the struct you can search for "aggregate initialization".

  • @TheTrashpack234
    @TheTrashpack234 6 років тому +341

    Is it bad that instead of watching the video I'm just watching his hands?

    • @1Naif
      @1Naif 6 років тому +10

      No

    • @greatbullet7372
      @greatbullet7372 6 років тому +16

      explains pretty much everything

    • @mprecup
      @mprecup 6 років тому +46

      If I'm watching his hands, it's because he's getting close to backhanding the cactus.

    • @MsJavaWolf
      @MsJavaWolf 6 років тому +34

      That is the purpose of the video. The hand gestures are an advanced form of hypnosis that will make you understand vectors better.

    • @FilSapia
      @FilSapia 4 роки тому +4

      I think The Cherno is secretly Italian ;)

  • @kemptcode
    @kemptcode 6 років тому +19

    You should mention emplace_back in another video.

  • @Solo6R
    @Solo6R 6 років тому +1

    You're a god with a compiler. Been programming in C++ for longer than I care to admit, and when I stumble across something I'm not 100% confident with I think "I wonder if Cherno can help me out here" and sure enough you can, and have, several times! Keep up the good work bud, VERY much appreciated.

  • @manishgurawalia7625
    @manishgurawalia7625 3 роки тому +2

    11:40 C++ is love♥️

  • @MultiVishnu55
    @MultiVishnu55 3 роки тому +2

    bro, you're too smart! goddamn, good shit

  • @saikirangattu2924
    @saikirangattu2924 6 років тому

    Very nice , Please make more videos on other data structures

  • @abhayagarwal7103
    @abhayagarwal7103 6 років тому +1

    Man, your concepts are so clear.

  • @CombatFXZone
    @CombatFXZone 5 років тому +9

    I absolutely love the comparison with Java, because I started out with Java in High School.

    • @Blonder_Studio
      @Blonder_Studio 2 роки тому

      learning programmin in high school sucks balls
      i learned c# in high school and my "teacher" is a piece of shit bad

  • @damianzarzycki28
    @damianzarzycki28 6 років тому

    great content !

  •  6 років тому +8

    please make parallel process and simd tutorial

  • @hangyanma2501
    @hangyanma2501 2 роки тому

    你好,陈诺,你的课讲的太好了

  • @zaid4708
    @zaid4708 4 роки тому +4

    "Simple spice series" very accurate caption

  • @huthayfa1723
    @huthayfa1723 6 років тому

    Nice video ; I'm really confused of these vectors in computer science if we needed a dynamic array we would use a linked list .
    what is the difference between these two ?

  • @limmeh7881
    @limmeh7881 3 роки тому

    To think I was modestly learning about pointers and jumped into this rabbit hole.

  • @sewingsugar9892
    @sewingsugar9892 4 роки тому +1

    Can you recommend a book or course that gets more in depth information about behind the scenes of c++?

  • @sharrayyy
    @sharrayyy 3 роки тому +1

    Coding and guitar
    That's an awesome combo!

  • @orbyfied
    @orbyfied 3 роки тому +1

    so i didnt know how the vector class worked, so i created an "ArrayList" class,
    and i did the exact same thing that the vector class does xD to add an element just create a new array with current size + 1 and copy all of the previous contents into array[0 to size-1] and put the new element into array[size]

    • @orbyfied
      @orbyfied 3 роки тому

      @Peterolen i know but it is sort of a simplified version of the vector and ArrayList. It has the same concept behind it

  • @claudiofigueiredo8168
    @claudiofigueiredo8168 4 роки тому

    hey, what do you use to program in c++? Visual Studio? Awsome work ^^

  • @thelonewolf9866
    @thelonewolf9866 4 роки тому

    Excellent!

  • @abhisheksa6635
    @abhisheksa6635 10 місяців тому

    Will be glad to see someone trying to rewrite a STL written thing which can be more optimal and more towards the personal use case.

  • @otabektillavayev3309
    @otabektillavayev3309 Рік тому

    Good job

  • @bies_moron4404
    @bies_moron4404 6 років тому

    Good video !!!
    How we should use inline ?
    if function are short we should use inline otherwise we shouldn't ?

  • @sidharthcs2110
    @sidharthcs2110 3 роки тому

    In physics we can represent a vector as a row or column matrix( kinda like a 1d array ).
    maybe that's why

  • @nhensonbass
    @nhensonbass 2 роки тому +1

    I know this is about five years later, but another reason I've learned not to store pointers in vectors is that the element can be deleted from the vector leaving a memory leak. If you're using vectors with pointers, be careful.

  • @user-vc2pm5xv7s
    @user-vc2pm5xv7s 4 роки тому

    I remember in Bjarne Stroustrup's book, he never talks about raw array, he just went a head and talks about std::vector.

  • @michaeldasilva5976
    @michaeldasilva5976 4 роки тому

    Hm... While following along after making the Vertex class and attempting to print it to the console using
    std::cout

  • @tahaalkhashmany5678
    @tahaalkhashmany5678 4 роки тому +1

    does it basically work like dynamic memory allocation with malloc/realloc in c?

  • @phantomstriker7996
    @phantomstriker7996 Рік тому

    Dynamic arrays (mostly std::vector) is an array which can resize. You can push new things into it.

  • @stewartzayat7526
    @stewartzayat7526 6 років тому

    I have a question not related to the topic, why are classes in the standard library defined with lowercase identifiers, even though everyone declares classes with camel casing?

  • @ycp101
    @ycp101 3 роки тому

    Yes, you are great!
    your ccoding skill are great!
    I envy you!

  • @lizzienovigot
    @lizzienovigot 2 роки тому

    In linear algebra pne of the basic example of vectors is exactly what programmer would think of as an array or a tuple. So mathematically its quite natural to identify arrays and vectors as being very similar, if not the same thing

  • @Moren162
    @Moren162 6 років тому +75

    Please go in to data structures! All other videos is not even close your your quality!

    • @georgecristianiordan3712
      @georgecristianiordan3712 5 років тому +9

      Well i would like to see a video with data structures too, youtube lack of quality videos with data structures in c++.....

    • @ags0004
      @ags0004 5 років тому +9

      Data structures are supposed to be abstract and language agnostic, unless they need to meet a very specific need. But assuming you are talking about datastructures such as Queues, HashMaps and all that, the implementation is relatively the same. The only thing that might be a little different may be some fine tuning using your knowledge of the language to optimize some bits. But they should work the same way they would in every other language.
      Knowing how one is implemented in abstract and knowing the language you are going to implement them on is the only thing you need.

  • @1Naif
    @1Naif 6 років тому

    Awesome.

  • @obenashu9216
    @obenashu9216 5 років тому +1

    Please make a video on STL in C++

  • @serkanozturk4217
    @serkanozturk4217 Рік тому

    Personal Notes:
    -dynamic size, at the background it has limited memory but when reaches the limit, it creates a bigger sized memory and copies contents to it.
    - #include
    - std::vector vertices
    To add: entities.push_back((1,0,0)) (must be implicit conversion)
    - can use it in for loop:
    for(Vertex v: vertices) { //do sth }
    To prevent copying and being faster,
    for(Vertex& v: vertices) { //do sth }
    - to delete 2nd element: vertices.erase(vertices.begin()+1)

  • @theamjolnir9641
    @theamjolnir9641 5 років тому

    how do you access vectors of vectors? like in an matrix cause you can't exactly do matrix.assign() to a specific value can you?

  • @jms547
    @jms547 4 роки тому

    At 8:50 there's a note about moving rather than copying. Is there a video about this in this series?

  • @NoName-tn8rq
    @NoName-tn8rq 5 років тому

    I tried to do this thing for like 4 hours in total, and now i learned there is library that does this. (wasn't able to do it btw, i got stuck on some exceptions and shit)

  • @mcjustin1
    @mcjustin1 3 роки тому

    Nice video bud.

  • @chainonsmanquants1630
    @chainonsmanquants1630 3 роки тому

    Thanks

  • @giancarloandrebravoabanto7091
    @giancarloandrebravoabanto7091 4 роки тому

    hi could you tell us how to watch a bool vector in debug time?. because l did it for int and strings without problems

  • @claudedestquentin3138
    @claudedestquentin3138 7 місяців тому

    THE Best !

  • @smachkim9996
    @smachkim9996 6 років тому

    how can we make the function for import series data (around 5000points)?

  • @krood_
    @krood_ 5 років тому +1

    Whats the difference between dynamic array and vector ? are they both the same thing ?

  • @alexdavidsantiago3955
    @alexdavidsantiago3955 4 роки тому +1

    All the videos have in common that when you made a question and the answer is: "It depends"

  • @informativecontent4778
    @informativecontent4778 5 років тому

    luv u mate

  • @tannerbarcelos6880
    @tannerbarcelos6880 5 років тому

    Yet to understand why my professor decided to teach so much array stuff but said “vectors are the same so I’m gonna skip over them” when in reality, these vectors are beautiful works of art that shit on arrays lol. Simply the fact that they’re dynamic makes life so easy.

  • @_CazaBobos
    @_CazaBobos 4 роки тому

    Can you do something similar in C or just the classic memory allocation commands?
    Also, if I know the amount that I'm going to insert but it's defined by the user is it correct to declare the array like "Arr[nAmount]"?

    • @_CazaBobos
      @_CazaBobos 3 роки тому

      @Peterolen yes, I know about them. The problem is that not every c compiler accepts the example I wrote in the second paragraph. In some microchips you simply can't give variable length, only memory commands.

  • @joriskbos1115
    @joriskbos1115 5 років тому +2

    I was writing a little game in c as a bit of a challenge and I had to write my own dynamic array. The way I did it was that you create it with an initial size, but when it exceeds the size, the size of the array doubles. That way I don't have to reallocate the array every single time I add or remove an element, but I'm also not using up too much memory.

    • @sethtaylor7519
      @sethtaylor7519 5 років тому +5

      I'm pretty sure that is what vectors do as well.

  • @MarciusOliveira
    @MarciusOliveira 6 років тому

    Fantastic \o

  • @elmokhliss4852
    @elmokhliss4852 5 років тому

    thanks

  • @kgravikumar
    @kgravikumar 6 років тому

    Can i use the vectors for struct with different data types

  • @jonathanolivier6932
    @jonathanolivier6932 Рік тому

    Good video, but if you have a vector of string, what can you do if you want the first character of a string?

  • @user-sz9wm4rm5c
    @user-sz9wm4rm5c 6 років тому

    From your video I learned Java and C#

  • @dan110024
    @dan110024 2 місяці тому

    As a front-end JS dev, 3 days ago I had not a care in the world for performance. Half way through this C++ playlist and my first thought on hearing how this works is 'Damn that must be expensive.' JS seems so basic now lol.

  • @tablatronix
    @tablatronix 6 років тому

    How do you init a vector with values, not push after ?

  • @lowieh.3451
    @lowieh.3451 Рік тому

    I tried casting an int to (std::vector::const_iterator) to use as argument for the erase function, to no avail. Anyone understand what happens when vertices.begin + 1 is used as an argument? It seems there is some conversion going on, right? Why can the '1' be used there without any problem?

  • @diassagatov9784
    @diassagatov9784 2 роки тому +1

    Enough eye contact for today

  • @otangerineo
    @otangerineo 9 місяців тому

    i love you papi cherno

  • @programminglanguage2945
    @programminglanguage2945 6 років тому

    Great

  • @dhikshithrm
    @dhikshithrm 2 роки тому

    If i have a pointer to a vector which then moves to a different memory address to due to resize does my pointer automatically point to the new memory address?

  • @PongPongDudlDu
    @PongPongDudlDu 2 місяці тому

    Hey Cherno!
    I got a little question about passing the vector to a subfunction:
    In the Video at about 12:50 you are passing the vector via Function(vertices);
    I would have expected a Function(vertices&); to specify it as a pointer or a reference, basically.
    In C, every array is automatically passed by reference, it will never be copied.
    Is it in C++ depending on the parameters of the target function as it is a pointer in your example?
    Would love to hear your answer as I am a C developer and sometimes C++ is still a little strange to me.
    All the best!

  • @AlbertoNegri
    @AlbertoNegri 4 роки тому

    Hi, and congrats about this video series. Pretty deep and, therefore, interesting even for those who actually use C++ for fun, like me, but not professionally. Memory understanding is quite difficult at the beginning so I really appreciate your effort to make it clear. I have a question though. You said that programmers can choose to make a Stack allocation or a Heap allocation inside a standard vector and there are reasons for both choices. Pretty clear to me, but: let's assume you have a practical case. Can you show us your personal thoughts that bring you to use one instead of the other option? I mean several cases where you choose one option instead of the other and why. For instance, is there a max limit in bytes after which you choose a Heap allocation? Thanks very much