InterviewSolution
Saved Bookmarks
| 1. |
How To Reverse A Singly Linked List Without Recursion In Java? |
|
Answer» The previously linked list interview question BECOMES even more challenging when the interviewer asked you to solve the PROBLEM without recursion. you NEED to keep reversing links on the node until you reach the end, which will then become new HEAD. The previously linked list interview question becomes even more challenging when the interviewer asked you to solve the problem without recursion. you need to keep reversing links on the node until you reach the end, which will then become new head. |
|