赞
踩
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
示例:
给定 1->2->3->4, 你应该返回 2->1->4->3.
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public ListNode swapPairs(ListNode head) { if(head==null || head.next==null){//链表没有结点或者只有一个结点 return head; } ListNode pre=head; ListNode preNext=head.next; ListNode cur=preNext.next; pre.next=cur;//cur可能为空 preNext.next=pre; head=preNext;//新的头部; while(cur!=null&&cur.next!=null){ preNext=cur.next;//交换时第二个结点元素 cur=preNext.next;//下一次交换的第一个元素 pre.next.next=cur; preNext.next=pre.next;//第二个元素后面链接第一个元素 pre.next=preNext;//上一次的交换后的第二个元素链接本次第二个元素 pre=preNext.next;//交换后的第二个元素 } return head; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。