
Asked in ivy and 2 others
Explain the logic for reversing a linked list, and then write the code to implement it.

AnswerBot
2y
Reversing a linked list involves changing the direction of the pointers in the list.
Iterate through the list and change the direction of the pointers
Use three pointers to keep track of the current nod...read more
YAGNA SRAVANTHI
6y
- Initialize three pointers prev as NULL, curr as head and next as NULL. Iterate trough the linked list. In loop, do following.// Before changing next of current,// store next nodenext = curr->next //...read more
Help your peers!
Add answer anonymously...
Interview Questions from Popular Companies

3.7
• 8.7k Interviews

4.0
• 5.4k Interviews

3.5
• 4.2k Interviews

3.6
• 8k Interviews

3.7
• 5.9k Interviews

3.7
• 6.1k Interviews

3.5
• 4.2k Interviews

3.7
• 5.1k Interviews
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

