Given a linked list, swap every two adjacent nodes and return its head.
For example, Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed.
1.Swap in 4 group(Memory Limit Exceed)
1 | public class longestSubstring { |
2 Recursion(simple but take a stcak of O(n), stack overflow)
1 | public class Solution { |
3.Swap in 3 group, fake a dummy node(constant memory)