首页 > 其他 > 详细

Reverse Nodes in k-Group

时间:2016-12-06 03:28:17      阅读:266      评论:0      收藏:0      [点我收藏+]

Reverse Nodes in k-Group

Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.

If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.

You may not alter the values in the nodes, only nodes itself may be changed.

Only constant memory is allowed.

For example,
Given this linked list: 1->2->3->4->5

For k = 2, you should return: 2->1->4->3->5

For k = 3, you should return: 3->2->1->4->5

分析:看起来比较简答的一题,但要注意一些细节,因为有可能要多次旋转pair(pair大小为k), 注意每个pair之间的链接,pair内部的反转使用三指针反转链表实现

/**
 * 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(head ==NULL)
            return head;
        ListNode **pp = &head;
        ListNode* begin = head;
        ListNode* end = begin;
        while(begin){
            end = begin;
            for(int i=0; end&& i<k-1; i++)
                end = end->next;
            if(end ==NULL)
                break;
            ListNode* p1=begin;
            ListNode* p2= p1->next;
            ListNode* tailNext = end->next;
            while(p2&& p2!=tailNext){
                ListNode* t = p2->next;
                p2->next = p1;
                p1= p2;
                p2 = t;
            }
            begin->next = tailNext;
            *pp = p1;
            pp = &(begin->next);
            begin = tailNext;
        }
        return head;
        
    }
};

 

Reverse Nodes in k-Group

原文:http://www.cnblogs.com/willwu/p/6135926.html

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