I was confused until I watched the dry run of recursion... Thanks for having Striver!..
@user-wp7kd9dv6i3 ай бұрын
same
@tanisha999-e2w Жыл бұрын
Hands down, the best explanation on KZbin!
@aryanpinto510511 ай бұрын
Was a bit confused regarding recursive approach of this problem for a while. Your explanation just cleared out all of it. Great video!!❤💯
@durgeshjadhav017 ай бұрын
Logic are crystal clear with your perfection in explanation , i don't even need to look code .
@abid38019 ай бұрын
Awesome man. The way you tried to portray the recursive one is actually over the moon..
@AmanSharma-xy1qm11 ай бұрын
All the video lectures and the articles helped me a lot to gain confidence in DSA and will be helping me in the interviews. Thank you Striver bhaiya for bringing such amazing content for free.
@surayahappy120 Жыл бұрын
so beautiful so elegant just looking like a wow
@gauravmishra878210 ай бұрын
The dry run part is genius!! very nice explanation.
@hardikkumarsingh10 ай бұрын
Exceptional explanation !!! I've never intuitively understood recursive version of reversing a LinkedList, but this video helped me understand that too so easily🙇🙇
@sanchitsanyam73596 ай бұрын
recursive approach of soving linked list is awesome non of any youtuber has explained it such fantastically
@1handclaps8 ай бұрын
If you are a beginner or even an intermediate this is the best playlist to follow for DSA
@raghavgarg-oo6mx8 ай бұрын
explanation of the recursive approach was just exceptional . thankyouu striver
@AADITYASINGH-b2zАй бұрын
Kudos from the entire community for such beautiful explanation.
@dhruvsovasariaАй бұрын
thankyou , tried to understand the recursive approach from everywhere before this since last night , finally understood
@adityamukherjee22074 күн бұрын
bhaiyya thank u so much for this explanation tomorrow i have ds end sem exam and still this video helped me a lot . thank u so much.
@Salman_Patel_073 ай бұрын
Crystal clear !!! Thanks for explaining the recursion topic soo beautifully and making it easier to understand. ❤
@endlesslearning263 ай бұрын
The recursion code is always a delight to understand , coz you think that how could be solved soo elegantly
@ritikshandilya70757 ай бұрын
Recursion approach is just LIT , bhai kamal kr diya striver bhai
@harshilpatel32058 ай бұрын
Amazing explanation at recursive approach thank you striver for this amazing course😊🎉
@darshitsingh43782 ай бұрын
BEST VIDEO ON KZbin SEEN ALL
@adveshdarvekar77332 ай бұрын
Thank you for putting so much hardwork!
@MrRon-jx9vx7 ай бұрын
Great explanation!!! The best i've ever seen on recursion !
@surge3.145 ай бұрын
Your DryRun thing in these recursion approaches is amazing
@honeyjot87099 ай бұрын
Loved the explanation for recursive solution, especially the DRY RUN
@ddevarapaga51344 ай бұрын
Brooo u are crazyyyy that dry run is the best i have seen thank you understood
@ujjwalsingh68897 ай бұрын
Finally I understood this recursive concept.........Nice Explanation👍👍
@Rieshu-l9i9 ай бұрын
Amazingly explained, #Striver rocks, gold bless you & all
@rahuldwivedi475810 ай бұрын
Even more concise: function reverseList(head, prev=null){ if(head === null) return prev; const next = head.next; head.next = prev; return reverseList(head.next, head); }
Is it me or anyone else also thinks that things have been a little tougher from Linked List
@vibhavsharma27244 ай бұрын
I think it's you only.
@aspirant500days74 ай бұрын
No man. I've given up on Linked last multiple times to reach this far (not even half).
@stith_pragya10 ай бұрын
UNDERSTOOD, Thank You So Much for this wonderful video...........🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
@amitarya48943 ай бұрын
Awesome and hats off 🙏🙏 thank you so much Striver.
@AbhishekKumar-cd4gg4 ай бұрын
understood , best part was dry run of recursive code
@swathigp38185 ай бұрын
I was very confused with this recursive method, how does it reverse. It is super clear after watching your video !
@swagatrout30759 ай бұрын
thank you man tanks for clarifying the recursion from scratch
@_thingsthatmatter5 ай бұрын
i love youuuu u r thee besttttt teacherrrrrrrr EVERRRRRRRRRRRRR
@FifthArima5 ай бұрын
The way he explains sounds like Arnab Goswami highlighting the news ! 😂
@kalpking...44969 ай бұрын
understood very much thank you sir
@jeanishverma68988 ай бұрын
In iterative method use this , if you get null exception: Node temp = head; Node p = null; While(temp!=null){ Node curr = temp.next; temp.next=p; p=temp; temp=curr; } return p;
@Ammmmmmmman9 ай бұрын
Dry run part was actually brilliant
@prathambhatia30403 ай бұрын
Thanks for that dry run approach
@hiteshsharma919210 ай бұрын
Broo your way of explaining is awesom👍👍
@AvijitGhosh-o1r3 ай бұрын
Very well explained. Thanks
@mohitparmar013 ай бұрын
best explanation ever!
@adharapuramnavaneeth992510 ай бұрын
greatest video superb sir !!
@prad20035 ай бұрын
best explanation ever
@HemangSinghal-op5ep3 ай бұрын
Awesome Explanation!
@girirajsingh44674 ай бұрын
you are a genius
@knowthrvdo8 ай бұрын
NICE LECTURE AND PLZ UPLOAD REMAINING LECTURES OF A TO Z SDA SHEET PLZ THEY ARE VERY HELPFULL FOR US
@adebisisheriff1599 ай бұрын
Simply the best!!!
@prathameshjadhav294210 ай бұрын
Awesome teaching
@pavanKumar-hm7on10 ай бұрын
you are our god . thank you soo much
@pankajsunal98199 ай бұрын
thanks for this explanation
@kumarnishantnitallahabad1605 ай бұрын
Wow great explanation
@saitehith66478 ай бұрын
Just Brilliant ❤
@ojasviagrawal318011 ай бұрын
excellent explanation was just fabbb
@rishu480010 ай бұрын
Amazing explanation
@annapureddyravi40546 ай бұрын
Bro can you push the code ..The way you explain is very interesting to watch and learn the concepts.
@ManasNandMohan11 ай бұрын
So Beautiful , So elegant just looking like a WoW
@lakshayverma65574 ай бұрын
dry run was awesome
@ankithazra20054 ай бұрын
you are god
@dhanushkiran-k3j11 ай бұрын
Best video explanation
@nuraynasirzade6 ай бұрын
Striver i'm solving A2Z course and i'm at the strings but there is no video explanation for them. i searched videos on youtube but one explains in detail and clear like you. So can you PLEASE make videos on that topic(i will wait). Thank You
@romanreigns42355 ай бұрын
Same bro
@Arnavfellasleep7 ай бұрын
Understood Will comeback after a month and report where I am.
@codeman38289 ай бұрын
Great video
@banothutharun27439 ай бұрын
what a man 👏👏
@ABISHEK-r7k10 ай бұрын
UNDERSTOOD SIR
@KeerthiTummala296Ай бұрын
🥳💯 percent effective
@instinct10986 ай бұрын
Recursive is damnn good!!
@gauravbanerjee289810 ай бұрын
Understood Thanks a lot ❣❣
@amanpratapsingh198111 ай бұрын
Hey, I find your videos very valuable interms of understanding things, but just not able to find the links in the description whatever you mention in the video, not sure why. Thanks Striver for these videos.
@sarthakkk862810 ай бұрын
you can find the links on his website whose link is in the description.
@aavashkuikel13416 ай бұрын
15:00 Recursion Starts
@sibiranganath6 ай бұрын
Recursive approach: 14:50
@YourCodeVerse10 ай бұрын
Understood✅🔥🔥
@khalasianiket8164 ай бұрын
understood ❤
@diptamoy1210 ай бұрын
bhaiyaa app great ho❤❤❤❤
@SomalinBagarty6 ай бұрын
Amazing !!!
@manga_mania.11 ай бұрын
Thank you striver😃😃
@s.saranya248611 ай бұрын
the BEST💯
@whitedevil28693 ай бұрын
In recursive way m..I wrote the same code given above ..... Stack overflow error aa raha hain ....give me soln
@Learnprogramming-q7f9 ай бұрын
Thank you bhaiya
@snehashisratna907411 ай бұрын
big fan bhai luv you bhai
@NARUTOUZUMAKI-bk4nx10 ай бұрын
Understooood
@harigs722 ай бұрын
What is this benefit of doing in recurssion
@rockstarCoolz5 ай бұрын
Thanks 🙏 sir
@ArpanChakraborty-do6yz8 ай бұрын
Understand ❤❤
@nishant45952 ай бұрын
the beeesssttttttttt!!!!!
@surayahappy120 Жыл бұрын
best best best best ...................................................................
@DeepakPatel-d5v7 ай бұрын
Thanks A lot
@bushrahussain30058 ай бұрын
Which process is the best you have to explain in 1 min through time n space complexity steps in the end which you didn't
@Ashutoshkumar-jx9wk11 ай бұрын
Thanks ❤
@hashcodez7574 ай бұрын
9:45 Take U Forward
@AnuragParoha-ck5ds7 ай бұрын
understood!!!
@Anime-ub7vs10 ай бұрын
recursive solution of linked list ListNode* reverseList(ListNode* head) { if(head == NULL) return NULL ; if(head->next == NULL ) return head ; ListNode * newHead = reverseList(head->next); head->next->next = head ; head->next = NULL; return newHead ; }