Skip to main content

Print the Middle of a given linked list

This problem is similar to the finding the middle element of linked list. we can easily solve this problem using two pointers. Let see an example.

Print middle node of linked list

In case linked list are contain even number of linked list nodes in this case there will be two possibilities of middle element. See this example.

1->2->3->4->5->6->7->8->NULL

In this situation [4,5] both are middle node. Here given code implementation process.





Comment

Please share your knowledge to improve code and content standard. Also submit your doubts, and test case. We improve by your feedback. We will try to resolve your query as soon as possible.

New Comment