Asked inivy,NA

Reversing of linked list and tell the logic first and then write the code

AnswerBot
1y

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
5y
    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...
ivy NA Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter