码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode] 25. k个一组翻转链表

时间:2018-07-03 00:12:19      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:problem   int   head   group   ref   rev   链表   反转   new   

25. k个一组翻转链表

仍然是链表处理问题,略微复杂一点,边界条件得想清楚,画画图就会比较明确了。

reverse函数表示从 front.next节点开始,一共k个节点做反转。
即: 1>2>3>4>5 ,k = 2。当front为1时,
执行reverse后:

1>3>2>4>5

同上个题一样,申请一个空的(无用的)头指针指向第一个节点,会方便许多。

public ListNode reverseKGroup(ListNode head, int k) {
        ListNode ans = new ListNode(Integer.MAX_VALUE);
        ans.next = head;
        ListNode p = ans;
        while (ok(p.next, k)) {
            p = reverse(p, k);
        }

        return ans.next;
    }

    private boolean ok(ListNode p, int k) {
        while (k > 0 && p != null) {
            p = p.next;
            k--;
        }
        return k == 0;
    }

    private ListNode reverse(ListNode front, int k) {
        ListNode from = front.next;
        ListNode head = from;
        ListNode cur = from.next;
        ListNode tmp = null;
        while (k > 1 && cur != null) {
            tmp = cur.next;
            cur.next = from;

            from = cur;
            cur = tmp;
            k--;
        }
        head.next = cur;
        front.next = from;
        return head;
    }

[leetcode] 25. k个一组翻转链表

标签:problem   int   head   group   ref   rev   链表   反转   new   

原文地址:https://www.cnblogs.com/acbingo/p/9256337.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!