Optimized Way To Use Vector In C++

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

ความคิดเห็น • 173

  • @135pushpendradubey9
    @135pushpendradubey9 3 ปีที่แล้ว +24

    So, Few hours back i didn't know the full form of STL.
    A friend recommended me your channel.... I'm loving it. ❤️
    You're the kind of teacher i ever wanted. Thanks 🙌

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks dude..

  • @shubhamsinghchauhan5491
    @shubhamsinghchauhan5491 4 ปีที่แล้ว +50

    Just watched this playlist one week before my placement exam...and here I am shortlisted into Wells Fargo! Thanks :)

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +4

      Best of luck!

  • @harshsahu7825
    @harshsahu7825 4 ปีที่แล้ว +25

    vector vec(int size); is easier than vec.resize() . vec.capacity() gets doubled when 'size' sized vector is full.

    • @ninadkalanke8880
      @ninadkalanke8880 4 ปีที่แล้ว +6

      No, both the methods "vector vec(int size); " and "vector vec; vec.reserve(int size)" are different.......
      the first method will initialize a vector with the size of (int size) but in the second method the empty vector is initialized with 'capacity' of (int size).

    • @shubh0000071
      @shubh0000071 3 ปีที่แล้ว

      But both can be used to achieve the performance improvement, right?

    • @harshsahu7825
      @harshsahu7825 3 ปีที่แล้ว

      If you know the size already define it using constructor.

  • @samarthtandale9121
    @samarthtandale9121 3 ปีที่แล้ว +3

    sir I must say - You have very good teaching skills and thank you for teaching this topic in such an easy and systematic way!

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว +1

      You are most welcome

  • @mohamedinfas5341
    @mohamedinfas5341 3 ปีที่แล้ว +2

    Everything is crystal clear. I'm on my way watching all the playlist. Thank you so much

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Glad it was helpful!

  • @rampandi9302
    @rampandi9302 4 ปีที่แล้ว +9

    Nice video bro..
    In one of my interview I said I will use reserve in vector to fix my capacity.. But the interviewer comes up with saying that if that is the case why you are not using array.. I got locked up here.. I simply answered vector class internally has many API which will be helpful fr my logic implementation where as array doesn't... But at the end he suggested me not to use reserve in vector...

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +14

      If reserve was bad it wouldn't be there, the point is if you already know your upper bound and that upper bound is never going to change then you will use array, but if you know that there is some upper bound but it may increase then you will go for vector.
      Never go with something is bad, everything is situational, you just have to find the correct situation to use something.
      And that's what i have explained in video.

    • @rampandi9302
      @rampandi9302 4 ปีที่แล้ว +3

      @@CppNuts that's perfect explanation bro.. Thanku so much..

    • @farashinaik3358
      @farashinaik3358 4 ปีที่แล้ว +7

      In such case the answer to the interviewer would be : If i use array with a fixed size,than it never gonna extend the array capacity when it hit max limit .so with reserve(),there are two benefits: optimization by not copying each time + auto capacity extension. same is mentioned in this nice video .

  • @TechieCodeBuddy
    @TechieCodeBuddy 3 ปีที่แล้ว +1

    After watching your lectures and reading Articles from GFG my concept is totally clear. Thanks a lot !!

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Glad to hear that

  • @maheshj01
    @maheshj01 4 ปีที่แล้ว +3

    I think there are two drawbacks with vector
    1. copy elements to new array as you run out of space consumes time
    2. Wastage of unwanted memory: consider the last case where you have 32 size and 32 capacity what if you want to add 1 more element the array increases its capacity to 64 and inserts the 33rd element and the rest other 31 locations remain unutilized.
    31 may seem too less
    but suppose you want to insert 1025 elements the capacity goes to 2048 elements making 1023 locations unitilized. an so on..

    • @vikasmanav3715
      @vikasmanav3715 3 ปีที่แล้ว +1

      We can make use of shrink_to_fit() to reduce the capacity of container in order to match it's size..

    • @techademy9354
      @techademy9354 2 ปีที่แล้ว +2

      @@vikasmanav3715 still, copying the elements from the old array to the new array takes O(n)

  • @muzammiljawad8591
    @muzammiljawad8591 ปีที่แล้ว

    gen1 sir i have watvhed 2 oof ur videos so far related to vectors and the way u explain i salute u

  • @johntrump5656
    @johntrump5656 4 ปีที่แล้ว +3

    Best Educational channel ur brother from Syria♥️

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks you man!!

  • @venkatpraneethreddy5953
    @venkatpraneethreddy5953 3 ปีที่แล้ว

    I like the music that comes at the start. It is so beautiful

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thank you..

  • @biswajitsahoo1456
    @biswajitsahoo1456 3 ปีที่แล้ว +1

    bro a big salute for your awesome teaching

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว +1

      Thanks bro...

  • @ninadkalanke8880
    @ninadkalanke8880 4 ปีที่แล้ว +1

    I think it is a great video I use vector very often but I never guess that such a complicated process is going on...

  • @gurgaon_videos
    @gurgaon_videos 3 ปีที่แล้ว

    Best playlist ever for STL. Thanks a lot.
    💗❤💗
    💗❤❤❤💗

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Glad you like it!

  • @joebosah2727
    @joebosah2727 5 ปีที่แล้ว +3

    Keep on trucking. Good job.

    • @CppNuts
      @CppNuts  5 ปีที่แล้ว

      Thanks man!!

  • @ezgiozkayasevindik3004
    @ezgiozkayasevindik3004 4 ปีที่แล้ว

    Woww I understand clearly now, but how about vector& data; ??? And if I writing a sort algorithm like quicksort how I can use vectors?

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Are you willing to use already provided std::sort or create your own?

    • @ezgiozkayasevindik3004
      @ezgiozkayasevindik3004 4 ปีที่แล้ว

      CppNuts I created and finished my HW ty. 😊

  • @ayushthakur2896
    @ayushthakur2896 4 ปีที่แล้ว +2

    You didnt explain the modifiers?? emplace,emplace_back??

  • @techdyan8500
    @techdyan8500 4 ปีที่แล้ว

    Hi mr.rupesh ...your enthusiasm and the way u explain is very good ...am happy subscribing your channel .

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks man..

  • @saisriangajala8399
    @saisriangajala8399 3 ปีที่แล้ว

    Very precise explanation, very helpful for a beginner ti understand the concept deeply..

  • @balachandarjeyalatha868
    @balachandarjeyalatha868 ปีที่แล้ว

    Applause... 💐👏🏼best lecture

  • @dattatammisetti9324
    @dattatammisetti9324 2 ปีที่แล้ว

    You have good voice and great Teaching skills. Thankyou 😌☺

    • @CppNuts
      @CppNuts  2 ปีที่แล้ว +1

      Thanks man

  • @gavravdhongadi9824
    @gavravdhongadi9824 4 ปีที่แล้ว +1

    Enjoying this series, can you also make a video on const as well

  • @nikhil6842
    @nikhil6842 4 ปีที่แล้ว +4

    one word: Awesome

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks man!!

  • @alienyt1058
    @alienyt1058 3 ปีที่แล้ว

    loving these videos rupesh sir

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks man..

  • @arielvieira9288
    @arielvieira9288 3 ปีที่แล้ว

    The video is really great! I was expecting to see the difference between push_back and emplace_back.

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      I think i have video for emplace.

    • @AjStyles-uk8fu
      @AjStyles-uk8fu 3 ปีที่แล้ว

      @@CppNuts plz give link

  • @ramananrajaraman2612
    @ramananrajaraman2612 7 หลายเดือนก่อน

    Nice explanation
    Thank you

  • @suhaniagrawal3768
    @suhaniagrawal3768 3 ปีที่แล้ว

    Sir I wish u could cover some more functions and give a brief of how it is used

  • @paragrudrawar2783
    @paragrudrawar2783 4 ปีที่แล้ว

    Which one allocates the memory? reserve or resize or both? When resize is used, it initializes all the elements with zero. That means, it must be allocating the memory as well. But what reserve?

  • @deepakprajapati5064
    @deepakprajapati5064 4 ปีที่แล้ว +1

    your explanation is good , thank you

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks..

  • @lpgcavalini
    @lpgcavalini 2 ปีที่แล้ว

    Awesome video, thanks! So, if I don't know the size of my collection but I know it will be big should I use std::list over std::vector? It seems std::list is better option on this case

  • @sharmishthanath4547
    @sharmishthanath4547 3 ปีที่แล้ว

    i love your teaching style ...can you do a Java series too like this please?

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว +2

      I have a long list of videos in C++, once they are done I can think for Java.
      Thanks for the suggestion.

  • @bradfincher6835
    @bradfincher6835 ปีที่แล้ว

    can you give a notes on complete stl and vector

  • @sanjanakulkarni2451
    @sanjanakulkarni2451 2 ปีที่แล้ว

    great explanation sir...

  • @قناةافادة-ي5ل
    @قناةافادة-ي5ل ปีที่แล้ว

    Ok bro now if i created vector with size 1e6 and after inserting 1e6 elements i made pushback to insert more elements then the time of Push back in the stage of inserting 1e6+1 is O(N)?? And as regular the pushback time function in vector within the size of vector is O(1)
    All right??
    And finally thanks alot for this fantastic explanation ❤❤❤ keep going

    • @CppNuts
      @CppNuts  ปีที่แล้ว +1

      Correct!!
      Thanks

  • @Rashmi_Yadav_vlogs
    @Rashmi_Yadav_vlogs 4 ปีที่แล้ว

    Very nicely explained and thanks bro keep it up 😍

  • @supriyamohotkar7931
    @supriyamohotkar7931 ปีที่แล้ว +1

    thank you sir

    • @CppNuts
      @CppNuts  ปีที่แล้ว

      Thanks

  • @madhavsangani9089
    @madhavsangani9089 4 ปีที่แล้ว

    We are using vec.reserve(1000).....instead we should be using arr[1000 ] ..bcuz both will do the same work

  • @ayushbaranwal3177
    @ayushbaranwal3177 4 ปีที่แล้ว +3

    when we use .reserve() then the capacity will be fix then where is the best part of linked list is used

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      Even after reserve you can extend it by assigning more.

    • @farashinaik3358
      @farashinaik3358 4 ปีที่แล้ว

      extension will happen automatically on the fly .so no worries .

  • @rohit_mondal__
    @rohit_mondal__ 3 ปีที่แล้ว

    Please cover the modifiers....vector has to offer

  • @christopherapps6177
    @christopherapps6177 5 ปีที่แล้ว +2

    Good explanation. Thanks..

    • @CppNuts
      @CppNuts  5 ปีที่แล้ว

      Welcome..
      Thanks for all your support.

  • @ros2186
    @ros2186 4 ปีที่แล้ว +1

    Can you tell me which is the best compiler for c++

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      There is no best compiler, otherwise everyone will use that only.

  • @GauravGupta-zw7hz
    @GauravGupta-zw7hz 3 ปีที่แล้ว

    can you also make video of creating our own vector class?

  • @prithambaswanigiryalkar4815
    @prithambaswanigiryalkar4815 3 ปีที่แล้ว

    Sir didi u cover all the STL function??? Pls reply sir!!!

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      I have covered so many.

    • @prithambaswanigiryalkar4815
      @prithambaswanigiryalkar4815 3 ปีที่แล้ว

      @@CppNuts mine questions is not many or less ,the question is all are covered or not

  • @vishalagarwal2844
    @vishalagarwal2844 3 ปีที่แล้ว

    sir where is the separate video on modifiers in vectors

  • @vaibhavdeshmukh7900
    @vaibhavdeshmukh7900 4 ปีที่แล้ว +1

    Awesome video sir!!

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks..

  • @joshuasohento7114
    @joshuasohento7114 ปีที่แล้ว

    What happen to the previous vectors copy? Will they get deleted or they stay and occupy space?

  • @mohammadjadidi233
    @mohammadjadidi233 3 ปีที่แล้ว

    Thank you very much :-) I really enjoy your way of teaching.

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks..

  • @psycho.2u
    @psycho.2u 4 ปีที่แล้ว

    I have a doubt. If it really creates a new double sized array when size exceeds capacity, then the address of the array should also changed. Right?
    But i tried it. It is same till last. So, may be this is wrong. It is not creating a new array and copy values. It may create a new previous sized array. And may link it to the old somehow. I am not sure. Cuz, I am really new to programming. Explain this plz

  • @karthickkumar1380
    @karthickkumar1380 3 ปีที่แล้ว

    God You;

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks dude..

  • @AdityaGupta-ke1vd
    @AdityaGupta-ke1vd 4 ปีที่แล้ว +1

    hello,
    in my laptop this is output,
    Size:1 Capacity:1
    Size:2 Capacity:2
    Size:3 Capacity:3
    Size:4 Capacity:4
    Size:5 Capacity:6
    Size:6 Capacity:6
    Size:7 Capacity:9
    Size:8 Capacity:9
    Size:9 Capacity:9
    Size:10 Capacity:13
    Size:11 Capacity:13
    Size:12 Capacity:13
    Size:13 Capacity:13
    Size:14 Capacity:19
    Size:15 Capacity:19
    Size:16 Capacity:19
    Size:17 Capacity:19
    Size:18 Capacity:19
    Size:19 Capacity:19
    Size:20 Capacity:28
    Size:21 Capacity:28
    Size:22 Capacity:28
    Size:23 Capacity:28
    Size:24 Capacity:28
    Size:25 Capacity:28
    Size:26 Capacity:28
    Size:27 Capacity:28
    Size:28 Capacity:28
    Size:29 Capacity:42
    Size:30 Capacity:42
    Size:31 Capacity:42
    Size:32 Capacity:42
    the size is not doubling.

    • @chandanmishra5419
      @chandanmishra5419 4 ปีที่แล้ว

      After doubling the capacity we can't get any odd number capacity. Is this true brother?

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Now which compiler are you using?

  • @mujahidkakakhel3647
    @mujahidkakakhel3647 4 ปีที่แล้ว

    sir u saved ......THANKS ALOT

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Glad it helped

  • @Yash-mz1st
    @Yash-mz1st 4 ปีที่แล้ว

    Amazing explination... Thanks alot

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      Thanks man..

  • @alisadighi5269
    @alisadighi5269 ปีที่แล้ว

    Why not using an array since we know what is the size of the vector?

  • @lamebrisee
    @lamebrisee 4 ปีที่แล้ว +5

    Again you rock !!

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks..

  • @jaganmohanroyalnanubala3095
    @jaganmohanroyalnanubala3095 3 ปีที่แล้ว

    Happy with this video 🤩

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks dude..

  • @zakariamennioui9473
    @zakariamennioui9473 3 ปีที่แล้ว

    thanks bro
    - Validateur

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      You're welcome

  • @vaishnavi4354
    @vaishnavi4354 4 ปีที่แล้ว

    Hello hello hello. ..always gives goosebumps 😄😄😄😎😎

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks..

  • @calmquoties
    @calmquoties 2 ปีที่แล้ว +1

    Thanks man!

    • @CppNuts
      @CppNuts  2 ปีที่แล้ว

      My pleasure..

  • @jatinrauthan9075
    @jatinrauthan9075 3 ปีที่แล้ว

    Little bit on the lengthy side could be a 9 min video.By the love your content.

  • @akash-lz2dq
    @akash-lz2dq 3 ปีที่แล้ว

    but here is a problem too if we want to insert a element in between the vector then it has to again create a vector of 1000 size and again copy and all ,am i right ?

  • @singavarapuaakash1408
    @singavarapuaakash1408 ปีที่แล้ว

    if u use reserve, then what will be the diff with array and remaining memory will be wasted if it's not used

    • @CppNuts
      @CppNuts  ปีที่แล้ว

      Vector provide much more flexibility than array, and it is still applicable if you use reserve.

  • @sufalsikder4874
    @sufalsikder4874 3 ปีที่แล้ว

    great work sir

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Many many thanks

  • @vaibhavshinde76
    @vaibhavshinde76 5 ปีที่แล้ว +1

    Came from botking's channel nice bhaiyya

    • @CppNuts
      @CppNuts  5 ปีที่แล้ว

      Welcome dude..
      He is my brother 😎

  • @chandanmishra5419
    @chandanmishra5419 4 ปีที่แล้ว

    Sir, if that's so than why don't we use array with a size of 1000? By reserving the vector we are losing its dynamic property.
    Correct me if I'm wrong.

    • @ravisahu4658
      @ravisahu4658 4 ปีที่แล้ว

      Read the comments of other guys . He gave the reply of this question

  • @ChandanGupta070
    @ChandanGupta070 3 ปีที่แล้ว

    You are best sir

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks man..

  • @teetanrobotics5363
    @teetanrobotics5363 5 ปีที่แล้ว +3

    amazing content

    • @CppNuts
      @CppNuts  5 ปีที่แล้ว

      Thanks..

  • @bikramjitdas7000
    @bikramjitdas7000 4 ปีที่แล้ว

    Sir suppose I initialised 5 elements and 5 elements space has been created, now as per the vector feature it would get double if I have filled all the 5 spaces, now when I insert the 6th element space then the capacity is 10 now. Suppose I don't need to insert any more element, then would there be any space wastage of 4 elements or is there any way out?

  • @beansm152
    @beansm152 3 ปีที่แล้ว

    Hello I have data to load from what i have been given and i have been told to use this:
    ifstream source("file_name.txt");
    vector y;
    double a;
    if (source.is_open()){
    while(!source.eof()){
    source >> a;
    y.push_back(a);
    }
    source.close();
    }
    but i want to add the for (int i=0;..........)
    and i am not sure whether i am supposed to add it in between somewhere in the code given or outside of that code?

  • @eem-rp1qk
    @eem-rp1qk 2 ปีที่แล้ว

    Can we do vector.reserve(n) and get the value of n during run time?

    • @CppNuts
      @CppNuts  2 ปีที่แล้ว +1

      Yes we can

  • @AbhishekKumar-yd7ls
    @AbhishekKumar-yd7ls 4 ปีที่แล้ว

    you should explain or atleast tells about 2D vector.i am stuck in 1 question for 2 hours because I don't think about 2D vector because of this lecture.btw explanation is good.

  • @Anonymous-mz9un
    @Anonymous-mz9un 3 ปีที่แล้ว

    so the size increases according to power of 2 manner rit? Is this true for every cpp compiler. I'm curious. And what about complexity is it order(1)

    • @KarabauPlay
      @KarabauPlay 2 ปีที่แล้ว

      2, is the lowest positive integer that can be used to increase or decrease anything. In this case it does N * 2 for the capacity because its much faster than N + N.
      Also memory allocation is expensive, so adding 1 to the capacity everytime is unoptimal.

  • @rohitnegi4651
    @rohitnegi4651 4 ปีที่แล้ว +1

    but why it doubles the capacity? why does not it just add capacity by one?

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      You should know how vector works internally, this is my video please search and watch, all your doubts will get clear.

  • @naveenkumarmkNvn
    @naveenkumarmkNvn 4 ปีที่แล้ว +1

    Please make video on semaphore

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Yaa man!!
      Right now i am focusing on DS.

  • @shekharsulgiti7839
    @shekharsulgiti7839 4 ปีที่แล้ว

    Hi sir, After coyping into new doubled array previous array is deleted by free() right ?

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Yes, correct!! but not using free, it will use delete in c++.

  • @shamganeshm4137
    @shamganeshm4137 4 ปีที่แล้ว

    Can I use a variable in reserve like.....vec.reserve(n)
    (After inputting n)

  • @abhishekpatidar5589
    @abhishekpatidar5589 10 หลายเดือนก่อน

    You are best🤩🤩

  • @anubhavngh
    @anubhavngh 4 ปีที่แล้ว +1

    Hey! Rupesh. Can i get text file of your programs along with all the comments?

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +2

      Hi Anubhav, that is member only content. You need to become member of my channel. (It's pretty cheap)

  • @akshayreddy3176
    @akshayreddy3176 ปีที่แล้ว

    what about iterators when are you going to explain

  • @dhanushambrose4179
    @dhanushambrose4179 4 ปีที่แล้ว

    sir,give some more examples so that it makes much easier to us .

  • @manishkasera8584
    @manishkasera8584 4 ปีที่แล้ว

    maza aa gya..

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Dhanyawad bhai...

  • @AmeerHamza-jy5ml
    @AmeerHamza-jy5ml 4 ปีที่แล้ว +1

    Use white theam 😊

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      But white theme will reduce mobile battery fast, because white pixel takes more battery. And it is not good for eyes. That's why i use dark theme.

    • @AmeerHamza-jy5ml
      @AmeerHamza-jy5ml 4 ปีที่แล้ว

      @@CppNuts use but increase font size 😍

  • @manishpratapsingh3172
    @manishpratapsingh3172 3 ปีที่แล้ว

    where are other Vector's Operation

  • @khangau4844
    @khangau4844 3 ปีที่แล้ว

    you sound like neso academy??

    • @CppNuts
      @CppNuts  3 ปีที่แล้ว

      Thanks

  • @aniketbhoite7168
    @aniketbhoite7168 4 ปีที่แล้ว

    Ide name? Can anyone tell!

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      VS code

  • @forexworld2974
    @forexworld2974 4 ปีที่แล้ว

    Please give subtitle

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      TH-cam generates subtitles.

  • @karoldrazek7614
    @karoldrazek7614 4 ปีที่แล้ว

    I'd like to be your student :D

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Thanks :D

  • @boolean29
    @boolean29 4 ปีที่แล้ว +1

    too verbose... but good contents !

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว

      Sorry and thanks..

  • @preetikhanna7034
    @preetikhanna7034 4 ปีที่แล้ว +1

    Too long

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      Sorry.. even i thought the same way, but then i remembered my senior once said you should listen too much or study too much to remember something about some topic after long time so its better now 😊.

  • @maxhitup
    @maxhitup 3 ปีที่แล้ว

    first 3 min of this video is waste in this video

  • @ash_engineering
    @ash_engineering 4 ปีที่แล้ว +3

    To verbose ,the whole concept could have completed in less time video

    • @CppNuts
      @CppNuts  4 ปีที่แล้ว +1

      Thanks, will work on that.

    • @xuxusito
      @xuxusito 4 ปีที่แล้ว +3

      You can either play the video faster with x1.5 or skip some parts. I rather have a Video that is verbose than a video that explains too rapid but not clarifying the topic in detail. @CppNuts please continue your really good content!

    • @farashinaik3358
      @farashinaik3358 4 ปีที่แล้ว +1

      @@CppNuts verbose is fine as you do .some people may catch the lecture fast and some may be slow Hence let it be as its going .just a thought.

  • @fndTenorio
    @fndTenorio 4 หลายเดือนก่อน

    You could have said all this in 3 minutes.

    • @CppNuts
      @CppNuts  2 หลายเดือนก่อน

      Yes sometimes i drag a bit.