Something has been bugging me since I've heard it was asked a lot in the interviews. Reverse a singly linked list. The thing is that I've checked the implementations and I was wondering whether the idea I was thinking could be applied
|data1|->|data2|->|data3|->|data4|->|data5|
This structure is the initial condition of the linked list. I was thinking when we would like to reverse wouldn't it be like;
|data5|->|data4|->|data3|->|data2|->|data1|
Thus, in a loop which will take O(n) running time, simply reversing the data of Node #1 with Node #5, Node #2 with Node #4 would do the job?
