Reverse a Linked List | C++ Placement Course | Lecture 22.3

preview_player
Показать описание
Notes of this Lecture:
Рекомендации по теме
Комментарии
Автор

Please complete this playlist as soon as possible with advance data structure and algorithm, because I am a 3rd yr student, i have less time, i follow this playlist for strong my DSA❤️🤘

debajyotideba
Автор

the visuals(animations) make solutions to remember for long time....nice work

mridultailor
Автор

Just spend whole day to solve this myself. Can't believe how you represent it so easy.

harixd
Автор

Bring more to this playlist, great work 🏆

goshawk
Автор

Tip: you can check the "output in terminal option in code runner settings".
This will save your time and you need not right the file name everytime to run the program

archanaagarwal
Автор

Bhaiya you start new things, it is good but you never complete or continue the Previous thing. Bhaiya pls either don't start or don't leave in between. Our Expectation breaks when you stop !!

keshavtyagi
Автор

Don't say "1-1 step se aage bdhane h 3 ptrs" in itr. solution, it create confusion, just state point prev to curr, curr to next and next 1 step aage!!!👍🏻

iSumitYadav
Автор

I literally love your content. But I have a suggestion that you should come up with videos that are multi conceptual, and will clarify our concepts in much more depth.

RajeshKumarSingh-yejq
Автор

I knew they will decrease the frequency of video😌

souvikroy
Автор

It's been 1 week since this video is uploaded when next video is coming ??

ishajain
Автор

the flow of recursive reversing was explained so badly, I don't understand why not increase the runtime a bit so the concepts can be grabbed easily. Since we're all beginners here.

dorararo
Автор

void head) {
if(head==nullptr) return;
reversePrint(head->next);
cout << head->data << endl;
}




// A more optimized code
// works only if u want to print the linked list in reverse without changing the head position

kabiraggarwal
Автор

bhot khus hu playlist dekhke perform karke practice karke.

next video kab aayega?

akashthoriya
Автор

Thanks for explaining in short time and with animation.

shubhamdubey
Автор

Plzz upload the next video waiting from seven days

Aishnayak
Автор

Yaar I could easily afford paid courses, the reason I started this was because of Aman bhaiya and their guarantee of higher quality than any other paid course. Ab beech me latka diya aur chor diya....paid course ko ab starting se karke time waste karna padega🙃

rohanarya
Автор

please complete this playlist because i am a third year student and i am keenly waiting for phase 2 of this course

ishaanprajapati
Автор

Explanation by visuals is very very good.

neerajmahapatra
Автор

half of the playlist hasn't been completed for phase 1, please add more videos asap, thanks & warm regards

mechanicalbaba
Автор

at 6:32 the arrow that was rotated was head->next then why are we pointing head->next->next = head??

rounakbhatia