leetcode--Reverse Nodes in k-Group

来源:互联网 发布:淘宝店铺密码修改 编辑:程序博客网 时间:2024/05/16 15:45

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

Hide Tags
 Linked List
Have you met this question in a real interview?


class Solution {public:    ListNode *reverseKGroup(ListNode *head, int k) {        static int number = 0;        vector<ListNode*> v;        for(ListNode *lp = head; lp!=NULL; lp=lp->next){            v.push_back(lp);            number++;        }        ListNode *result = NULL;            if(number==0||k<=1||number<k)            return head;        else if(number>=k)        {            ListNode * tail = result;            int i = 0;            for(; i<(int)number/k; i++)            {                for(int j=k*i+(k-1); j>=k*i; j--)                {                    if(j==0)                    {                        result = v[j];                        tail = result;                    }                    else{                        tail->next = v[j];                        tail = tail->next;                    }                }            }            if(number%k!=0)                tail->next = v[i*k];                            return result;        }    }};

vs上运行可以,但leetcode上提交显示  runtime error??





0 0
原创粉丝点击