What are C++ STL Vectors? How to use them? Comparison, Implementation

preview_player
Показать описание
Vectors are really important part of STL guys! I hope this helps 😊

Рекомендации по теме
Комментарии
Автор

after not having the option to sort out anything for most recent 3 hours, your video ended up being a rescuer!

shreyaesha
Автор

Me : Hey.. You already know STL(vectors too😜). Why you watching this

My brain : Keep calm and watch full video. Keerti definitely teach you something new.


P.S : ThankYou so much for your hard work nd effort.

Love you from bottom of my heart 💕💕

NagaVijayKumar
Автор

Great video !!very few teaches when to use what and you did that thing which help me alot in my initial days !

BloodMista
Автор

Really good work...you explained all the important point in simpler way.. Thanks for taking out time and helping ppl.. It really takes effort and time to make vids.

ShabnamKhan-cjzc
Автор

Mam please continue with ur video's we learn alot more like right now I came across matrix in vectors emplace_back today

amishasingh
Автор

U saved my time dude ! I was searching best Tutorials and U landed here
thank you so much and upload more videos..

arvindar
Автор

Please make captions available for all your videos. Thankyou

ankithajain
Автор

You teach to make any thing so simple.

zeeshanquamar
Автор

You clarified all my doubts thank you, mam.

HyperXD_YT
Автор

Ma'am Remarkable presentation and clear explanation

anubhavsharma
Автор

Mam please upload some backtracking problems

saichennu
Автор

turned on notifications for these stl vids :)

snlagr
Автор

@Keerti - Please describe something about how to implement your own vector... That could be an interesting topics

sekharbarua
Автор

#include<iostream>
#include<vector>
using namespace std;
int main()
{
    vector<int> a={1, 2, 3, 4};
    int size_a= a.size();
    vector<int> answer;
    for(int i=0; i<size_a;i++) cout<<answer[i]<<" ";

}
The code is not giving any output.

mereRevyoos
visit shbcf.ru