how to find the middle of the linked list when we are not informed of its size and it must be performed using only one loop and only one pointer.
|
|
How about
|
|||||||||||||||||
|
Sorry, I had to use 2 pointers :) Adding this to your answer, because a minor tweak reduces the number of pointers to 1. I hope you don't mind:
|
|||||||||||||||
|
|
Well, it's sort of a hack, since it's functionally equivalent to 2 loops. But still, it is only 1 loop.
|
||||
|
|
see my code. it works on my FC9 x86_64 correctly, the function "middle()" is that what you want:
EDIT: remove code except the middle(). |
||||
|
We can use skip list in this case: 1) While traversing each node in the Linked List make a skip list of the odd numbered nodes. Time: O(n) Space: O(n/2) 2) Now when you reach the end of the list divide the legnth by 2 and add 1 to get the middle element index. 3) Search for the index in the skip list O(logn) time. So, Overall Time Complexity of the algorithm would be : O(n)(1 traversal) + O(logn)(Searching Skip list) = O(n) Space Complexity : O(n/2) Please reply if this is inefficient.... |
|||
|
|
|
Iterate over your list using the provided head pointer and increment your one allowed pointer (I assume from your ambiguously-worded question that you're allowed one pointer besides the one that was passed in) once for every two increments of the head pointer.
There are edge cases ignored here (like what's the middle of a list with an even number of elements). |
|||
|
|
|
I had a similar question at IBM ISL Pune. Q:"How to find middle node of a singly linked list". I answered A:"Take two pointers start at head and move one pointer in single step and another pointer in two steps". Interviewer said, that's most simple solution. Q:Tell me how will you traverse without using 2 pointers. Hint is "use compiler property." Does anyone know how to find middle node using compiler property? |
|||
|
|