Given a linked list, swap every two adjacent nodes andreturnits head.
For example,
Given 1->2->3->4, you should returnthelistas2->1->4->3.
Your algorithm should use only constantspace. You may not modify the values inthelist, only nodes itself can be changed.