首页 > 其他 > 详细

LeetCode 24 Swap Nodes in Pairs

时间:2018-05-23 00:43:31      阅读:180      评论:0      收藏:0      [点我收藏+]
public class SwapNodesInPairs {

    /**
     * Definition for singly-linked list.
     * public class ListNode {
     * int val;
     * ListNode next;
     * ListNode(int x) { val = x; }
     * }
     */
    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 p = head;
            //next节点
            ListNode q = head.next;
            //before节点
            ListNode r = null;
            head = q;
            while (p != null && q != null) {
                p.next = q.next;
                q.next = p;
                if (r != null) {
                    r.next = q;
                }
                //更新
                r = p;
                p = p.next;

                if (p != null) {
                    q = p.next;
                }
            }
            return head;
        }
    }
}

递归版本

class Solution {
    public ListNode swapPairs(ListNode head) {
        if(head == null){
            return null;
        }
        if(head.next == null){
            return head;
        }
        ListNode next = head.next;
        //交换后的头结点的下一个节点是 下一对节点的尾节点
        head.next = swapPairs(next.next);
        next.next = head;
        return next;
    }
    
}

LeetCode 24 Swap Nodes in Pairs

原文:https://www.cnblogs.com/sansamh/p/9074871.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!