24.两两交换链表中的节点

https://blog.csdn.net/qq_17550379/article/details/80675453

思路:四个指针:pre,node1,node2,lat。然后令 pre.next = node2, node2.next=node1, node1.next=lat 然后更新四个指针

你可能感兴趣的:(24.两两交换链表中的节点)