Oh finally a good explainer with actual English. What a guy!
@ExoContinuum7 жыл бұрын
Just discovered your channel. You are incredibly amazing at explaining things quickly and precisely. Thanks a bunch, man!
@WhatsACreel7 жыл бұрын
Welcome!
@chswin2 жыл бұрын
@@WhatsACreel agree!
@boubacarsbtoure2036 Жыл бұрын
Venus
@Davidemmanuelkatz4 жыл бұрын
this is the best kangaroo programming channel in the world. Love the accent! Love the channel!
@bakensaken67453 жыл бұрын
Surprizingly good explaination! I watched other videos on the subject but this one taught me most.
@dennisrkb4 жыл бұрын
*Adding items in the middle is not a use case of lists. 99% of the time, the required traversal to get to the middle element will take longer than copying half a vector's elements.
@communistgoatboy9 жыл бұрын
When traversing sequence containers, don't forget about range-based for loops. :) for(auto &e : container) { std::cout
@WhatsACreel9 жыл бұрын
+communistgoatboy Brilliant! I made an amendment vid thanking you people and (hopefully) righting some of my blunders in this vid. Thanks for watching and commenting, and I hope I've not lost you. Link to amendment is: kzbin.info/www/bejne/hGfEi2Obet-ti8k
@AndyU967 жыл бұрын
Why do you not use 'using namespace std;'?
@kaleabmamo42056 жыл бұрын
What a brief explanation, please keep it up. Thank you
@leerv.5 жыл бұрын
For any newbies watching, the .push_back and .pop_back vector methods may be named to sound like the the way items are handled in stack memory. You "push" the latest item onto the top of the stack and to remove the latest item you "pop" it off the stack. I'm only speculating here, though.
@WhatsACreel5 жыл бұрын
Cheers mate! I think you're spot on there! They seem to have taken the syntax from stacks. Thanks for watching brus :)
@AsifMohammedSifat2 жыл бұрын
What an explanation!! Thank You.
@sagivalia50412 жыл бұрын
Since an iterator of a list is a pointer to the first element with the .begin() couldn't you just, according to the demo, simply said *(poslist+50+i)?
@nictrace5 жыл бұрын
hi man! Can you make video in fullscreen mode slideshow?
@RurikLoderr4 жыл бұрын
Can you do any linear algebra with the vectors? Or would that be something you used a specialized library for?
@Landofjello4 жыл бұрын
Do I have to put v.begin() + 1 as the argument for v.erase(), or can I just put the index?
@bryce9108 жыл бұрын
When it comes to accessing through a vector on each frame, (when hardly deleting) a vector would be better...correct?
@tanishq27662 жыл бұрын
Are you Feynmann's son mate? :) Great Explanation !
@dreznik5 жыл бұрын
nice video, wonder if you could do one on BOOST too
@yasamanderiszadeh9024 жыл бұрын
What a great video. Thanks!
@AzeemHashmani9 жыл бұрын
Big fan of yours Hitting the subscribe button !!
@WhatsACreel9 жыл бұрын
+Azeem Hashmani Legend! Thank you!
@uabpsab3 жыл бұрын
Very nice. Subbed immediately.
@AdminDarkraiRSK5 жыл бұрын
just fantastic
@WhatsACreel5 жыл бұрын
Thank you brus! Cheers for watching :)
@Coffeemancer3 жыл бұрын
please do C#
@epickittylover4899 жыл бұрын
WOOHOO!!!
@epickittylover4899 жыл бұрын
Biggest fan!!!
@MsSkip609 жыл бұрын
More STL please!
@piotrlenarczyk58037 жыл бұрын
Thank you for video:) Lists could be practical in embedded hardware in my personal opinion.
@epickittylover4899 жыл бұрын
First to like!!!
@mohamedhessuin63847 жыл бұрын
awesome!!
@epickittylover4899 жыл бұрын
YES IM FIRST!!!!!!!
@OMARI-yp6dk8 жыл бұрын
thank you
@AndyU967 жыл бұрын
Are you Australian?
@WhatsACreel7 жыл бұрын
I sure am!
@gunrunjk6 жыл бұрын
I think you have a big mistake, you are not counting from your "create an iterator and iterator to position." If you including that processing, it will not show the big different time
@WhatsACreel6 жыл бұрын
Yep, maybe, I aint sure. I think this whole vid was pretty shakey. Well cheers for pointing that out, have a good one!
@nanthakumark76134 жыл бұрын
awesome ....play in *0.75 speed 😁😁😁😁😁
@epickittylover4899 жыл бұрын
Im hogging the comment section
@WhatsACreel9 жыл бұрын
+epic_kitty_lover489 EPIC!!!!!!!
@trunksero52065 жыл бұрын
Hot
@SumoCumLoudly6 жыл бұрын
c++ is a monstrosity
@deanroddey28815 жыл бұрын
You might be interested in seeing an alternative of C++ without all of the STL craziness. I've created such a thing over many years: github.com/DeanRoddey/CIDLib