Thank you sir watched all your 74 videos. May your channel becomes the most watched computer science channel in india.
@factsclub4u6 ай бұрын
Clear difference between List and Vector :: List can be accessed from back to front and front to back .Same as vector by using function rbegin and rend. Only difference is random access are allowed in vector like v[4] but in list you need to travel entire elements to get that position.
@ManishKumar-zk5ky2 жыл бұрын
Great video sir unbelievable 🤩🤩
@sumitsengupta40284 жыл бұрын
Thank you sir, completed all the 74 lectures on c++ and Data Structure& Algorithm.
@saranshsharma448 жыл бұрын
Sir please upload a video on iterator . That is most important I guess.
@arpanhingrajiya6673 Жыл бұрын
What do you do now?
@Harsh-jc2bz4 жыл бұрын
I hit 1000th like(22 Oct 2020 -12:26am)
@kamaldakshkrishnan9990 Жыл бұрын
Perfect Lecture.
@dineshtolani93827 жыл бұрын
very clear and needed information about list, very easy to learn topics from your video. much appreciate your efforts sir.
@sunnykumar-vo5eo8 жыл бұрын
sir please upload videos on operators..................and also please upload video on how to use stl in solving competitive problems................................
@vakhariyajay22242 жыл бұрын
Thank you very much. You are a genius. 👍👍🔝🔝👌👌🙏🙏
@muhammadqasim18716 жыл бұрын
Thank your sir.. very helpful lecture .. please upload more... shukria from Pakistan
@hkstar28713 жыл бұрын
sir aaj exam hai 10 30 bje apka asirvad chahiye bss full apki video hi dekh rha ho 2 din se bss
@kartickchandramanna2672 жыл бұрын
Awesome Lecture Thank you sir 🙏
@TarunSingh-je9my5 жыл бұрын
Thank you sir for uploading the videos for C++.Each and every video is explained in depth. Could you please upload videos on iterators as well?
@milanshukla849719 күн бұрын
1:25 Sir, Vector is not a dynamic linked list... Instead, its dynamic ARRAY... A huge distinction..
@nikhilsrivastava77193 жыл бұрын
I have studied that vector is a dynamic array that takes contiguous memory it is not a dynamic linked list.
@raghvindyadav57374 жыл бұрын
thankyou sir
@born_for_drama5 жыл бұрын
multiples of 11 are sir's favorite.
@tanmaypratapsingh25563 жыл бұрын
OK
@shwetasingh79067 жыл бұрын
Thank you very much sir I was badly in need of this
@3dartlivesketching7385 жыл бұрын
thanxx sir for your contribution in development. we owe you
@pushkaraggarwal65715 жыл бұрын
Sir plz make video of valarray , slice etc
@YSingh-fo2ex8 жыл бұрын
Please upload some video on iterator. Waiting for it for a long time now!!
@tejasdeore83404 жыл бұрын
Iterator is not a member of std::__cxx11::list
@ritikshrivastava94423 жыл бұрын
7:45 you can use auto it=l1.begin() auto keywords apne app dataype leleta hai
@pratyushtripathi1728 Жыл бұрын
❤
@raghavgarg12586 жыл бұрын
Sir, Please make a vedio on iterator.
@raghavgarg12586 жыл бұрын
Sir, Please also make vedio on iterator
@himanshudadhich48228 жыл бұрын
in this video if we are taking element at run time .. then how will we insert at middle and at last???
@adityabhardwaj70892 жыл бұрын
sir agar pointer ko increment krke values acces kr skte h to normal arrays se bhi toh kr skte h
@hrithikkumar96483 жыл бұрын
Sir at 7:40 why u use p++....as we know p is pointer of int type so p++ refers next bytes of first block not next block..... please clear my doubt sir 🙏
@premrauth84164 жыл бұрын
Thank you sir
@jaydeeppatidar41894 жыл бұрын
sir can you plz upload videos on algorithms , iterators and some examples of STLclass plz sir ........
@sayantaniguha85193 жыл бұрын
It is basically a doubly linked list
@sanketsuryawanshi4 жыл бұрын
Thanks sir
@ritikshrivastava94423 жыл бұрын
can we insert element that user while enter at the runtime
@sunilrawat27178 жыл бұрын
very nice video...
@arpanhingrajiya6673 Жыл бұрын
What do you do now?
@deekshasingh35 жыл бұрын
Some vedios on set n unordered set ...plz sir uploaded these vedio ...
@36_parthshrimali843 жыл бұрын
So in clode blocks you don't have to write clrscr(); function?
@supriyadas47256 жыл бұрын
thanku sir..... :)
@divineforever86915 жыл бұрын
but it should not print 33 cuz as soon as p points to l1.end() it should come out of loop,,,hoping for a rply ..
@okprogrammer6 жыл бұрын
bahut badiya
@jahanzaibnavi58878 жыл бұрын
Sir, can we print single random value from the list, if yes then how?
@thegreekgoat984 жыл бұрын
@Jahanzaib Navi you can't... because a list can be accessed sequentially not in random manner.
@aishwaryagadge98753 жыл бұрын
Sir how to take input from user in list??? Please answer it...
@brijeshkumarsharma49285 жыл бұрын
Sir plz upload video on itrators
@deekshasingh35 жыл бұрын
Sir plz make vedio of iterators .....
@rishabhmadaan62806 жыл бұрын
Sir why p(iterator pointer ) is incrementing Randomly...??
@SanjayKumar-fy5to8 жыл бұрын
what is the difference between list and vector except that vector allows push_back(), while list allows both way insertion i.e push_front(), push_back() ??
@rajnikantjaiswal46567 жыл бұрын
vector is the implementation of dynamic array data structure while list is the implementation of arraylist type data structure
@alkeshshah59926 жыл бұрын
Is it possible to use insert() method with list... I have tried it. It is not showing error if I write it like "l1.insert(itr,5);" But gives me an error when I write it like "l1.insert(itr+2,5);" can you please help me understand this?
@fxexile5 жыл бұрын
Link list not possible to insert at middle because there is no random access. But this will work advance(itr,2); insert(itr, 5); Advance will move the pointer by given number of steps
@kumarniloy17984 жыл бұрын
Love from Dhaka
@Unknown-Stranger4 жыл бұрын
khub bhalo
@kumarniloy17984 жыл бұрын
@@Unknown-Stranger Bhalo
@hiteshsingh10394 жыл бұрын
sir you have NOT TOLD how to take input from the user at the runtime in template based variable in any of the video,
@ahmedmustafa-yd4cn8 жыл бұрын
What will happen in reverse() function if the value added are odd like we put 7 values in list. then how it will reverse ? what will happen to the middle value?
@AnjaliChauhan-gh7me4 жыл бұрын
@Yash Agarwal 🤣🤣🤣
@purnaamdoli37227 жыл бұрын
sir upload set class on trees
@muhammadshahzaibqureshi52942 жыл бұрын
Karachi*
@utkarshkhare11815 жыл бұрын
Why do we even need lists if vector can do everything a list can and much more.
@roopakdureja18154 жыл бұрын
can anybody tell me how the while loop is executed, as it should exit when 'p' iterator will come across last/end digit but it is printing 33(last digit), how?
@harshalunhale43694 жыл бұрын
In actual scenario, l1.end() does not point a last element of l1 list.... It points a block next to that of last element so that while loop can goes upto last element block itself.... I hope this is enough answer for u...
@Unknown-Stranger4 жыл бұрын
it is like linked list that, last node is pointing to the NULL,
@nature_00ph10 ай бұрын
16/02/2024❤
@Ddot-cd1in2 жыл бұрын
Ujn❤️
@snehasahu48448 жыл бұрын
sir how to use GetTickCount64(this mothod return timestamp) with list
@YTHardy4 жыл бұрын
Iterators kidhar he?????🙄
@vsh1555 жыл бұрын
👌👍🤘✌️🤙👌👌🤙
@rishabhkataria52556 жыл бұрын
#include using namespace std; #include #include #include #include main() { list l1; int a; couta; list::iterator p=l1.begin(); cout
@manojreddymulkalla72605 жыл бұрын
can we use remove function in any other container
@VivekJaviya4 жыл бұрын
Video speed 1.5 x
@Unknown-Stranger4 жыл бұрын
me at 2x
@siddharthsharma59593 жыл бұрын
Sir jee, Pakistan aur Bangladesh ka value mat assign karo, ye dono countries mazhab ke naam pe alag hui thi, apna channel chamkaane ke liye lalach theek nahi.