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

Leetcode 0025. Reverse Nodes in k-Group

时间:2016-09-15 01:03:12      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
居然把头插法写错了,debug了一个多小时
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* reverseKGroup(ListNode* head, int k) {
        if(k == 1 || head == nullptr)  return head;
        ListNode *tail = head;
        int i;
        for(i=0;i<k && tail != nullptr;i++,tail=tail->next);
        if(i<k) return head;
        tail = reverseKGroup(tail, k);
        ListNode* rear = head,*tmp=nullptr;
        head= tail;
        for(int i = 0;i<k;i++){
              tmp = rear->next;        
              rear->next = head;
              head = rear;
              rear = tmp;
        }
        return head;
    }
};
View Code

 

Leetcode 0025. Reverse Nodes in k-Group

标签:

原文地址:http://www.cnblogs.com/zeroArn/p/5874053.html

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