Algorithms part1
Two Pointers
1.Middle of Linked List[E]
Description
Find the middle node of a linked list.
Example
- Given 1->2->3, return the node with value 2.
- Given 1->2, return the node with value 1.
Challenge If the linked list is in a data stream, can you find …