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

leetcode 25 Reverse Nodes in k-Group

时间:2017-02-10 23:33:41      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:code   k-group   eve   tno   leetcode   lis   ret   ever   ++   

class Solution {
public:
    ListNode* reverseKGroup(ListNode* head, int k) {
        ListNode *cur = head;
        for (int i = 0; i < k; ++i) {
            if (!cur) return head;
            cur = cur->next;
        }
        ListNode *new_head = reverse(head, cur);
        head->next = reverseKGroup(cur, k);
        return new_head;
    }
    ListNode* reverse(ListNode* head, ListNode* tail) {
        ListNode *pre = tail;
        while (head != tail) {
            ListNode *t = head->next;
            head->next = pre;
            pre = head;
            head = t;
        }
        return pre;
    }
};

leetcode 25 Reverse Nodes in k-Group

标签:code   k-group   eve   tno   leetcode   lis   ret   ever   ++   

原文地址:http://www.cnblogs.com/wangkun1993/p/6388182.html

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