LeetCode-Reverse Nodes in k-Group

来源:互联网 发布:用友软件武汉公司 编辑:程序博客网 时间:2024/05/20 14:23

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

Solution:

Code:

<span style="font-size:14px;">/** * 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 == 0 || k == 1) return head;        ListNode *begin = head;        int length = 0;        while (begin != NULL) {            ++length;            begin = begin->next;        }        int turns = length/k;        if (turns == 0) return head;        begin = head;        ListNode *end = head, *nextNode;        head = head->next;        for (int i = 1; i < k; ++i) {            nextNode = head->next;            head->next = begin;            begin = head;            head = nextNode;        }        ListNode *kBegin, *kEnd;        --turns;        while (turns > 0) {            kBegin = head;            kEnd = head;            head = head->next;            for (int i = 1; i < k; ++i) {                nextNode = head->next;                head->next = kBegin;                kBegin = head;                head = nextNode;            }            end->next = kBegin;            end = kEnd;            --turns;        }        end->next = head;        return begin;    }};</span>



0 0
原创粉丝点击